Skip to content
Snippets Groups Projects
Commit 45342a35 authored by Alexandre Julliard's avatar Alexandre Julliard
Browse files

Fixed function prototype that confused winapi_extract.

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