Commit 1ab9c9d8 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

kernel32: Fix EscapeCommFunction prototype.

parent a77d957d
......@@ -592,7 +592,7 @@ BOOL WINAPI ClearCommBreak(HANDLE handle)
* false if the device is not present cannot execute the command
* or the command failed.
*/
BOOL WINAPI EscapeCommFunction(HANDLE handle, UINT func)
BOOL WINAPI EscapeCommFunction(HANDLE handle, DWORD func)
{
DWORD ioc;
DWORD dwBytesReturned;
......
......@@ -1899,7 +1899,7 @@ WINBASEAPI BOOL WINAPI DosDateTimeToFileTime(WORD,WORD,LPFILETIME);
WINBASEAPI BOOL WINAPI DuplicateHandle(HANDLE,HANDLE,HANDLE,HANDLE*,DWORD,BOOL,DWORD);
WINADVAPI BOOL WINAPI DuplicateToken(HANDLE,SECURITY_IMPERSONATION_LEVEL,PHANDLE);
WINADVAPI BOOL WINAPI DuplicateTokenEx(HANDLE,DWORD,LPSECURITY_ATTRIBUTES,SECURITY_IMPERSONATION_LEVEL,TOKEN_TYPE,PHANDLE);
WINBASEAPI BOOL WINAPI EscapeCommFunction(HANDLE,UINT);
WINBASEAPI BOOL WINAPI EscapeCommFunction(HANDLE,DWORD);
WINBASEAPI void * WINAPI EncodePointer(void *);
WINBASEAPI void * WINAPI EncodeSystemPointer(void *);
WINADVAPI BOOL WINAPI EncryptFileA(LPCSTR);
......
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