Files
2026-04-20 12:06:34 +08:00

7 lines
242 B
C#

public static class MainThreadMsg
{
public const uint BASE = 0;
private static uint Cursor_BASE = BASE;
public static readonly uint App_Focus_True = ++Cursor_BASE;
public static readonly uint App_Pause_False = ++Cursor_BASE;
}