mirror of
https://github.com/status-im/nim-stew.git
synced 2025-01-09 11:45:42 +00:00
Fix some Windows API declarations.
This commit is contained in:
parent
7a2b6dbdda
commit
3e4dc8213b
@ -109,12 +109,12 @@ when defined(windows):
|
||||
importc: "DeleteFileW", dynlib: "kernel32", stdcall.}
|
||||
proc closeHandle(hobj: uint): int32 {.
|
||||
importc: "CloseHandle", dynlib: "kernel32", stdcall, sideEffect.}
|
||||
proc writeFile(hFile: uint32, lpBuffer: pointer,
|
||||
proc writeFile(hFile: uint, lpBuffer: pointer,
|
||||
nNumberOfBytesToWrite: uint32,
|
||||
lpNumberOfBytesWritten: var uint32,
|
||||
lpOverlapped: pointer): int32 {.
|
||||
importc: "WriteFile", dynlib: "kernel32", stdcall, sideEffect.}
|
||||
proc readFile(hFile: uint32, lpBuffer: pointer,
|
||||
proc readFile(hFile: uint, lpBuffer: pointer,
|
||||
nNumberOfBytesToRead: uint32,
|
||||
lpNumberOfBytesRead: var uint32,
|
||||
lpOverlapped: pointer): int32 {.
|
||||
|
Loading…
x
Reference in New Issue
Block a user