Files
2026-06-02 10:26:44 +08:00

7 lines
248 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;
}