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.

13 lines
248 B

  1. #nullable enable
  2. namespace IPA.AntiMalware
  3. {
  4. internal enum AmsiResult
  5. {
  6. Clean = 0,
  7. NotDetected = 1,
  8. BlockedByAdminStart = 0x4000,
  9. BlockedByAdminEnd = 0x4fff,
  10. Detected = 32768
  11. }
  12. }