Skip to content
Snippets Groups Projects
Commit b473a0f0 authored by Michael McCormack's avatar Michael McCormack Committed by Alexandre Julliard
Browse files

Added stub for CancelIo.

parent b83bb6da
No related branches found
No related tags found
No related merge requests found
......@@ -900,7 +900,7 @@ debug_channels (comm debugstr dll int resource stress thunk toolhelp win32)
@ stub WriteConsoleInputVDMW
# NT 4.0 additions
@ stub CancelIo
@ stdcall CancelIo(long) CancelIo
@ stdcall CancelWaitableTimer(long) CancelWaitableTimer
@ stdcall CopyFileExA (str str ptr ptr ptr long) CopyFileExA
@ stdcall CopyFileExW (wstr wstr ptr ptr ptr long) CopyFileExW
......
......@@ -1237,6 +1237,15 @@ BOOL WINAPI GetOverlappedResult(
}
/***********************************************************************
* CancelIo (KERNEL32.@)
*/
BOOL WINAPI CancelIo(HANDLE handle)
{
FIXME("(%d) stub\n",handle);
return FALSE;
}
/***********************************************************************
* FILE_AsyncReadService (INTERNAL)
*
......
......@@ -1243,6 +1243,7 @@ BOOL WINAPI BuildCommDCBW(LPCWSTR,LPDCB);
BOOL WINAPI BuildCommDCBAndTimeoutsA(LPCSTR,LPDCB,LPCOMMTIMEOUTS);
BOOL WINAPI BuildCommDCBAndTimeoutsW(LPCWSTR,LPDCB,LPCOMMTIMEOUTS);
#define BuildCommDCBAndTimeouts WINELIB_NAME_AW(BuildCommDCBAndTimeouts)
BOOL WINAPI CancelIo(HANDLE);
BOOL WINAPI CancelWaitableTimer(HANDLE);
BOOL WINAPI ClearCommBreak(HANDLE);
BOOL WINAPI ClearCommError(HANDLE,LPDWORD,LPCOMSTAT);
......
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