Fixed function prototype that confused winapi_extract.

This commit is contained in:
Alexandre Julliard 2002-01-21 17:37:24 +00:00
parent b6754d8313
commit 45342a35fe

View file

@ -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;