commit e5100605e9ba233d04fd46dec58c151239b6d365 (tree)
parent 04267fb1baf0b7b47330223fad0acbd088452ee7
Author: rageoholic <hershkrishna@protonmail.ch>
Date: Wed, 4 Nov 2020 18:30:48 -0600
Add missing LONG_PTR type
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/lib/std/os/windows/bits.zig b/lib/std/os/windows/bits.zig
@@ -60,6 +60,7 @@ pub const SIZE_T = usize;
pub const TCHAR = if (UNICODE) WCHAR else u8;
pub const UINT = c_uint;
pub const ULONG_PTR = usize;
+pub const LONG_PTR = isize;
pub const DWORD_PTR = ULONG_PTR;
pub const UNICODE = false;
pub const WCHAR = u16;