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.

14 lines
577 B

  1. #nullable enable
  2. using System;
  3. namespace IPA.AntiMalware
  4. {
  5. internal static class AmsiConstants
  6. {
  7. public const string AppName = "BSIPA/" + Config.SelfConfig.IPAVersion;
  8. public const string IAntimalwareGuidStr = "82d29c2e-f062-44e6-b5c9-3d9a2f24a2df";
  9. public static readonly Guid IAntimalwareGuid = new(IAntimalwareGuidStr);
  10. public static readonly Guid CAntimalwareGuid = new("fdb00e52-a214-4aa1-8fba-4357bb0072ec");
  11. public static readonly Guid IUnknownGuid = new("00000000-0000-0000-C000-000000000046");
  12. }
  13. }