Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
b473a0f0
Commit
b473a0f0
authored
Aug 22, 2001
by
Mike McCormack
Committed by
Alexandre Julliard
Aug 22, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stub for CancelIo.
parent
b83bb6da
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
kernel32.spec
dlls/kernel/kernel32.spec
+1
-1
file.c
files/file.c
+9
-0
winbase.h
include/winbase.h
+1
-0
No files found.
dlls/kernel/kernel32.spec
View file @
b473a0f0
...
...
@@ -900,7 +900,7 @@ debug_channels (comm debugstr dll int resource stress thunk toolhelp win32)
@ stub WriteConsoleInputVDMW
# NT 4.0 additions
@ st
ub
CancelIo
@ st
dcall 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
...
...
files/file.c
View file @
b473a0f0
...
...
@@ -1238,6 +1238,15 @@ BOOL WINAPI GetOverlappedResult(
/***********************************************************************
* CancelIo (KERNEL32.@)
*/
BOOL
WINAPI
CancelIo
(
HANDLE
handle
)
{
FIXME
(
"(%d) stub
\n
"
,
handle
);
return
FALSE
;
}
/***********************************************************************
* FILE_AsyncReadService (INTERNAL)
*
* This function is called while the client is waiting on the
...
...
include/winbase.h
View file @
b473a0f0
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment