authorgravatar for quae@daurnimator.comdaurnimator <quae@daurnimator.com> 2019-11-19 16:44:27+11:00
committergravatar for quae@daurnimator.comdaurnimator <quae@daurnimator.com> 2019-11-27 13:01:09+11:00
log1537d4701effe780d68444dec55073901001576a
tree394f8f9fdf186233cccbd29d66059ddb16d997a2
parenta453c99ba95ab1cc8de128aeffdaae561a6f1a8d
signature Commit is signed but in an unrecognized format.

std: fix definition of NtDeviceIoControlFile


1 files changed, 2 insertions(+), 2 deletions(-)

lib/std/os/windows/ntdll.zig+2-2
...@@ -24,8 +24,8 @@ pub extern "NtDll" stdcallcc fn NtCreateFile(...@@ -24,8 +24,8 @@ pub extern "NtDll" stdcallcc fn NtCreateFile(
24pub extern "NtDll" stdcallcc fn NtDeviceIoControlFile(24pub extern "NtDll" stdcallcc fn NtDeviceIoControlFile(
25 FileHandle: HANDLE,25 FileHandle: HANDLE,
26 Event: ?HANDLE,26 Event: ?HANDLE,
27 ApcRoutine: ?*IO_APC_ROUTINE,27 ApcRoutine: ?IO_APC_ROUTINE,
28 ApcContext: usize,28 ApcContext: ?*c_void,
29 IoStatusBlock: *IO_STATUS_BLOCK,29 IoStatusBlock: *IO_STATUS_BLOCK,
30 IoControlCode: ULONG,30 IoControlCode: ULONG,
31 InputBuffer: ?*const c_void,31 InputBuffer: ?*const c_void,