From a76023bcd860ac1b11a8dc87b3771365851584b2 Mon Sep 17 00:00:00 2001 From: Jimmi Holst Christensen Date: Fri, 19 Jan 2018 21:49:16 +0100 Subject: [PATCH] Removed PLARGE_INTEGER --- std/os/windows/index.zig | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/std/os/windows/index.zig b/std/os/windows/index.zig index b10d373d78..524760d9ed 100644 --- a/std/os/windows/index.zig +++ b/std/os/windows/index.zig @@ -75,7 +75,7 @@ pub extern "kernel32" stdcallcc fn ReadFile(in_hFile: HANDLE, out_lpBuffer: LPVO in_out_lpOverlapped: ?&OVERLAPPED) -> BOOL; pub extern "kernel32" stdcallcc fn SetFilePointerEx(in_fFile: HANDLE, in_liDistanceToMove: LARGE_INTEGER, - out_opt_ldNewFilePointer: ?PLARGE_INTEGER, in_dwMoveMethod: DWORD) -> BOOL; + out_opt_ldNewFilePointer: ?&LARGE_INTEGER, in_dwMoveMethod: DWORD) -> BOOL; pub extern "kernel32" stdcallcc fn SetHandleInformation(hObject: HANDLE, dwMask: DWORD, dwFlags: DWORD) -> BOOL; @@ -129,7 +129,6 @@ pub const UNICODE = false; pub const WCHAR = u16; pub const WORD = u16; pub const LARGE_INTEGER = i64; -pub const PLARGE_INTEGER = &LARGE_INTEGER; pub const TRUE = 1; pub const FALSE = 0;