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
702aec67
Commit
702aec67
authored
Mar 28, 1999
by
Andreas Mohr
Committed by
Alexandre Julliard
Mar 28, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added CreateIoCompletionPort stub.
parent
831560cd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
kernel32.spec
relay32/kernel32.spec
+1
-1
newfns.c
win32/newfns.c
+7
-0
No files found.
relay32/kernel32.spec
View file @
702aec67
...
...
@@ -175,7 +175,7 @@ init MAIN_KernelInit
159 stdcall CreateFileMappingA(long ptr long long long str) CreateFileMappingA
160 stdcall CreateFileMappingW(long ptr long long long wstr) CreateFileMappingW
161 stdcall CreateFileW(wstr long long ptr long long long) CreateFileW
162 st
ub
CreateIoCompletionPort
162 st
dcall CreateIoCompletionPort(long long long long)
CreateIoCompletionPort
163 stub CreateKernelThread
164 stdcall CreateMailslotA(ptr long long ptr) CreateMailslotA
165 stdcall CreateMailslotW(ptr long long ptr) CreateMailslotW
...
...
win32/newfns.c
View file @
702aec67
...
...
@@ -349,3 +349,10 @@ BOOL WINAPI SetThreadDesktop( HANDLE hDesktop )
return
TRUE
;
}
HANDLE
WINAPI
CreateIoCompletionPort
(
HANDLE
hFileHandle
,
HANDLE
hExistingCompletionPort
,
DWORD
dwCompletionKey
,
DWORD
dwNumberOfConcurrentThreads
)
{
FIXME
(
win32
,
"(%04x, %04x, %08lx, %08lx): stub.
\n
"
,
hFileHandle
,
hExistingCompletionPort
,
dwCompletionKey
,
dwNumberOfConcurrentThreads
);
return
(
HANDLE
)
NULL
;
}
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