Skip to content

Commit

Permalink
crate libc: Correct signature of WriteFile
Browse files Browse the repository at this point in the history
  • Loading branch information
bombless committed Jun 4, 2015
1 parent 2c8d75d commit dc15a52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/liblibc/lib.rs
Expand Up @@ -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,
Expand Down

0 comments on commit dc15a52

Please sign in to comment.