| author | |
| committer | |
| log | 3f8b26c06aafbf0860faf58b12c2124677a816fd |
| tree | 8ae2cab3c83e585971aad03637219e313ea161b3 |
| parent | 0f7544cfca63fc5b49790974e6b01097365bb18c |
1 files changed, 1 insertions(+), 1 deletions(-)
std/os/windows/index.zig+1-1| ... | ... | @@ -72,7 +72,7 @@ pub const STD_OUTPUT_HANDLE = @maxValue(DWORD) - 11 + 1; |
| 72 | 72 | /// The standard error device. Initially, this is the active console screen buffer, CONOUT$. |
| 73 | 73 | pub const STD_ERROR_HANDLE = @maxValue(DWORD) - 12 + 1; |
| 74 | 74 | |
| 75 | pub const INVALID_HANDLE_VALUE = @intToPtr(HANDLE, 0xFFFFFFFFFFFFFFFF); | |
| 75 | pub const INVALID_HANDLE_VALUE = @intToPtr(HANDLE, @maxValue(usize)); | |
| 76 | 76 | |
| 77 | 77 | pub const OVERLAPPED = extern struct { |
| 78 | 78 | Internal: ULONG_PTR, |