We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 254c791 commit 8aa3d60Copy full SHA for 8aa3d60
lib/std/os/windows/bits.zig
@@ -19,7 +19,6 @@ pub const STD_OUTPUT_HANDLE = maxInt(DWORD) - 11 + 1;
19
/// The standard error device. Initially, this is the active console screen buffer, CONOUT$.
20
pub const STD_ERROR_HANDLE = maxInt(DWORD) - 12 + 1;
21
22
-pub const SHORT = c_short;
23
pub const BOOL = c_int;
24
pub const BOOLEAN = BYTE;
25
pub const BYTE = u8;
@@ -54,6 +53,8 @@ pub const UNICODE = false;
54
53
pub const WCHAR = u16;
55
pub const WORD = u16;
56
pub const LARGE_INTEGER = i64;
+pub const USHORT = u16;
57
+pub const SHORT = i16;
58
pub const ULONG = u32;
59
pub const LONG = i32;
60
pub const ULONGLONG = u64;
0 commit comments