You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/BizHawk.Common/Win32/Win32Imports.cs
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -14,30 +14,30 @@ namespace BizHawk.Common
14
14
/// </summary>
15
15
publicstaticclassWin32Imports
16
16
{
17
-
publicconstintMAX_PATH=260;
17
+
publicconstuintMAX_PATH=260U;
18
18
19
19
[Flags]
20
-
publicenumTPM
20
+
publicenumTPM:uint
21
21
{
22
22
LEFTBUTTON=0x0000,
23
23
RIGHTBUTTON=0x0002,
24
24
LEFTALIGN=0x0000,
25
-
CENTERALIGN=0x000,
26
-
RIGHTALIGN=0x000,
25
+
CENTERALIGN=0x0004,
26
+
RIGHTALIGN=0x0008,
27
27
TOPALIGN=0x0000,
28
28
VCENTERALIGN=0x0010,
29
29
BOTTOMALIGN=0x0020,
30
30
HORIZONTAL=0x0000,
31
31
VERTICAL=0x0040,
32
32
NONOTIFY=0x0080,
33
33
RETURNCMD=0x0100,
34
-
RECURSE=0x0001,
34
+
RECURSE=0x0001,// value missing from official docs, but confirmed by https://github.com/microsoft/windows-rs/blob/bb15076311bf185400ecd244d47596b8415450fa/crates/libs/sys/src/Windows/Win32/UI/WindowsAndMessaging/mod.rs#L3461
35
35
HORPOSANIMATION=0x0400,
36
36
HORNEGANIMATION=0x0800,
37
37
VERPOSANIMATION=0x1000,
38
38
VERNEGANIMATION=0x2000,
39
39
NOANIMATION=0x4000,
40
-
LAYOUTRTL=0x8000,
40
+
LAYOUTRTL=0x8000,// value also missing from official docs, but confirmed by https://github.com/microsoft/windows-rs/blob/bb15076311bf185400ecd244d47596b8415450fa/crates/libs/sys/src/Windows/Win32/UI/WindowsAndMessaging/mod.rs#L3456
0 commit comments