1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

NoMouse option

This commit is contained in:
Brian Fiete 2024-08-12 14:10:49 -04:00
parent 266b80d332
commit 623da953c1
2 changed files with 2 additions and 1 deletions

View file

@ -50,6 +50,7 @@ namespace Beefy
AllowFullscreen = 0x0800'0000,
AcceptFiles = 0x1000'0000,
NoShow = 0x2000'0000,
NoMouse = 0x4000'0000,
};
[AllowDuplicates]

View file

@ -125,7 +125,7 @@ namespace Beefy.widgets
}
#if BF_PLATFORM_WINDOWS
[CLink, CallingConvention(.Stdcall)]
[Import("user32.lib"), CLink, CallingConvention(.Stdcall)]
static extern int16 GetKeyState(int nVirtKey);
#endif