You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
239 B

  1. #nullable enable
  2. using System.IO;
  3. namespace IPA.AntiMalware
  4. {
  5. public interface IAntiMalware
  6. {
  7. ScanResult ScanFile(FileInfo file);
  8. ScanResult ScanData(byte[] data, string? contentName = null);
  9. }
  10. }