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(
2424pub extern "NtDll" stdcallcc fn NtDeviceIoControlFile(
2525 FileHandle: HANDLE,
2626 Event: ?HANDLE,
27 ApcRoutine: ?*IO_APC_ROUTINE,
28 ApcContext: usize,
27 ApcRoutine: ?IO_APC_ROUTINE,
28 ApcContext: ?*c_void,
2929 IoStatusBlock: *IO_STATUS_BLOCK,
3030 IoControlCode: ULONG,
3131 InputBuffer: ?*const c_void,