crate libc: Correct signature of WriteFile

This commit is contained in:
York Xiang 2015-06-03 17:37:33 +08:00
parent 2c8d75d655
commit dc15a523e5

View file

@ -6308,8 +6308,8 @@ pub mod funcs {
lpOverlapped: LPOVERLAPPED) -> BOOL;
pub fn WriteFile(hFile: HANDLE,
lpBuffer: LPVOID,
nNumberOfBytesToRead: DWORD,
lpNumberOfBytesRead: LPDWORD,
nNumberOfBytesToWrite: DWORD,
lpNumberOfBytesWritten: LPDWORD,
lpOverlapped: LPOVERLAPPED) -> BOOL;
pub fn SetFilePointerEx(hFile: HANDLE,
liDistanceToMove: LARGE_INTEGER,