mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
Added stub for CancelIo.
This commit is contained in:
parent
b83bb6dac2
commit
b473a0f0b9
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user