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.
|
#nullable enable
|
|
using System;
|
|
|
|
namespace IPA.AntiMalware
|
|
{
|
|
internal static class AmsiConstants
|
|
{
|
|
public const string AppName = "BSIPA/" + Config.SelfConfig.IPAVersion;
|
|
public const string IAntimalwareGuidStr = "82d29c2e-f062-44e6-b5c9-3d9a2f24a2df";
|
|
public static readonly Guid IAntimalwareGuid = new(IAntimalwareGuidStr);
|
|
public static readonly Guid CAntimalwareGuid = new("fdb00e52-a214-4aa1-8fba-4357bb0072ec");
|
|
public static readonly Guid IUnknownGuid = new("00000000-0000-0000-C000-000000000046");
|
|
}
|
|
}
|