-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComInterfaceId.cs
More file actions
23 lines (18 loc) · 1.16 KB
/
ComInterfaceId.cs
File metadata and controls
23 lines (18 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// ReSharper disable IdentifierTypo
// ReSharper disable UnusedMember.Global
namespace Hi3Helper.Plugin.Core;
public static class ComInterfaceId
{
public const string ExInitializable = "436f6c6c-6170-7365-727f-000000000000";
public const string ExFree = "436f6c6c-6170-7365-727f-000000000001";
public const string ExPlugin = "436f6c6c-6170-7365-727f-000000000010";
public const string ExPluginPresetConfig = "436f6c6c-6170-7365-727f-000000000011";
public const string ExGameManager = "436f6c6c-6170-7365-727f-000000000012";
public const string ExLauncherApi = "436f6c6c-6170-7365-727f-000000000020";
public const string ExLauncherApiMedia = "436f6c6c-6170-7365-727f-000000000021";
public const string ExLauncherApiNewsFeed = "436f6c6c-6170-7365-727f-000000000022";
public const string ExLauncherApiResources = "436f6c6c-6170-7365-727f-000000000023";
public const string ExGameInstaller = "436f6c6c-6170-7365-727f-000000000030";
public const string ExGameUninstaller = "436f6c6c-6170-7365-727f-000000000031";
public const string ExPluginSelfUpdate = "436f6c6c-6170-7365-727f-000000000100";
}