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
f9a54ebc
Commit
f9a54ebc
authored
Apr 30, 2007
by
Louis Lenders
Committed by
Alexandre Julliard
May 01, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add stub for BindIoCompletionCallback.
parent
ffae39c3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-1
sync.c
dlls/kernel32/sync.c
+10
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
f9a54ebc
...
...
@@ -168,7 +168,7 @@
@ stdcall Beep(long long)
@ stdcall BeginUpdateResourceA(str long)
@ stdcall BeginUpdateResourceW(wstr long)
# @ stub BindIoCompletionCallback
@ stdcall BindIoCompletionCallback(long ptr long)
@ stdcall BuildCommDCBA(str ptr)
@ stdcall BuildCommDCBAndTimeoutsA(str ptr ptr)
@ stdcall BuildCommDCBAndTimeoutsW(wstr ptr ptr)
...
...
dlls/kernel32/sync.c
View file @
f9a54ebc
...
...
@@ -1855,6 +1855,16 @@ BOOL WINAPI PostQueuedCompletionStatus( HANDLE CompletionPort, DWORD dwNumberOfB
}
/******************************************************************************
* BindIoCompletionCallback (KERNEL32.@)
*/
BOOL
WINAPI
BindIoCompletionCallback
(
HANDLE
FileHandle
,
LPOVERLAPPED_COMPLETION_ROUTINE
Function
,
ULONG
Flags
)
{
FIXME
(
"%p, %p, %d, stub!
\n
"
,
FileHandle
,
Function
,
Flags
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/******************************************************************************
* CreateJobObjectW (KERNEL32.@)
*/
HANDLE
WINAPI
CreateJobObjectW
(
LPSECURITY_ATTRIBUTES
attr
,
LPCWSTR
name
)
...
...
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