16 lines
537 B
C#
16 lines
537 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace YY.Admin.Tools.Interop;
|
|
|
|
[SuppressMessage("ReSharper", "InconsistentNaming")]
|
|
internal static class CommonHandles
|
|
{
|
|
public static readonly int Icon = HandleCollector.RegisterType(nameof(Icon), 20, 500);
|
|
|
|
public static readonly int HDC = HandleCollector.RegisterType(nameof(HDC), 100, 2);
|
|
|
|
public static readonly int GDI = HandleCollector.RegisterType(nameof(GDI), 50, 500);
|
|
|
|
public static readonly int Kernel = HandleCollector.RegisterType(nameof(Kernel), 0, 1000);
|
|
}
|