Commit 45342a35 authored by Alexandre Julliard's avatar Alexandre Julliard

Fixed function prototype that confused winapi_extract.

parent b6754d83
......@@ -1599,11 +1599,11 @@ async_end:
}
/***********************************************************************
* FILE_WriteFileEx (KERNEL32.@)
* FILE_WriteFileEx
*/
BOOL WINAPI FILE_WriteFileEx(HANDLE hFile, LPCVOID buffer, DWORD bytesToWrite,
LPOVERLAPPED overlapped,
LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine)
static BOOL FILE_WriteFileEx(HANDLE hFile, LPCVOID buffer, DWORD bytesToWrite,
LPOVERLAPPED overlapped,
LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine)
{
async_private *ovp;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment