Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
cf415c62
Commit
cf415c62
authored
Nov 22, 2017
by
Andrey Gusev
Committed by
Alexandre Julliard
Nov 24, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add CreateThreadpoolIo stub.
Signed-off-by:
Andrey Gusev
<
andrey.goosev@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d84f6f72
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
15 additions
and
4 deletions
+15
-4
api-ms-win-core-threadpool-l1-1-0.spec
...-threadpool-l1-1-0/api-ms-win-core-threadpool-l1-1-0.spec
+1
-1
api-ms-win-core-threadpool-l1-2-0.spec
...-threadpool-l1-2-0/api-ms-win-core-threadpool-l1-2-0.spec
+1
-1
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-1
thread.c
dlls/kernel32/thread.c
+10
-0
kernelbase.spec
dlls/kernelbase/kernelbase.spec
+1
-1
winbase.h
include/winbase.h
+1
-0
No files found.
dlls/api-ms-win-core-threadpool-l1-1-0/api-ms-win-core-threadpool-l1-1-0.spec
View file @
cf415c62
...
...
@@ -10,7 +10,7 @@
@ stdcall CloseThreadpoolWork(ptr) kernel32.CloseThreadpoolWork
@ stdcall CreateThreadpool(ptr) kernel32.CreateThreadpool
@ stdcall CreateThreadpoolCleanupGroup() kernel32.CreateThreadpoolCleanupGroup
@ st
ub
CreateThreadpoolIo
@ st
dcall CreateThreadpoolIo(ptr ptr ptr ptr) kernel32.
CreateThreadpoolIo
@ stdcall CreateThreadpoolTimer(ptr ptr ptr) kernel32.CreateThreadpoolTimer
@ stdcall CreateThreadpoolWait(ptr ptr ptr) kernel32.CreateThreadpoolWait
@ stdcall CreateThreadpoolWork(ptr ptr ptr) kernel32.CreateThreadpoolWork
...
...
dlls/api-ms-win-core-threadpool-l1-2-0/api-ms-win-core-threadpool-l1-2-0.spec
View file @
cf415c62
...
...
@@ -9,7 +9,7 @@
@ stdcall CloseThreadpoolWork(ptr) kernel32.CloseThreadpoolWork
@ stdcall CreateThreadpool(ptr) kernel32.CreateThreadpool
@ stdcall CreateThreadpoolCleanupGroup() kernel32.CreateThreadpoolCleanupGroup
@ st
ub
CreateThreadpoolIo
@ st
dcall CreateThreadpoolIo(ptr ptr ptr ptr) kernel32.
CreateThreadpoolIo
@ stdcall CreateThreadpoolTimer(ptr ptr ptr) kernel32.CreateThreadpoolTimer
@ stdcall CreateThreadpoolWait(ptr ptr ptr) kernel32.CreateThreadpoolWait
@ stdcall CreateThreadpoolWork(ptr ptr ptr) kernel32.CreateThreadpoolWork
...
...
dlls/kernel32/kernel32.spec
View file @
cf415c62
...
...
@@ -333,7 +333,7 @@
@ stdcall CreateThread(ptr long ptr long long ptr)
@ stdcall CreateThreadpool(ptr)
@ stdcall CreateThreadpoolCleanupGroup()
# @ stub CreateThreadpoolIo
@ stdcall CreateThreadpoolIo(ptr ptr ptr ptr)
@ stdcall CreateThreadpoolTimer(ptr ptr ptr)
@ stdcall CreateThreadpoolWait(ptr ptr ptr)
@ stdcall CreateThreadpoolWork(ptr ptr ptr)
...
...
dlls/kernel32/thread.c
View file @
cf415c62
...
...
@@ -1001,6 +1001,16 @@ PTP_CLEANUP_GROUP WINAPI CreateThreadpoolCleanupGroup( void )
}
/***********************************************************************
* CreateThreadpoolIo (KERNEL32.@)
*/
PTP_IO
WINAPI
CreateThreadpoolIo
(
HANDLE
handle
,
PTP_WIN32_IO_CALLBACK
callback
,
PVOID
userdata
,
TP_CALLBACK_ENVIRON
*
environment
)
{
FIXME
(
"(%p, %p, %p, %p): stub
\n
"
,
handle
,
callback
,
userdata
,
environment
);
return
FALSE
;
}
/***********************************************************************
* CreateThreadpoolTimer (KERNEL32.@)
*/
PTP_TIMER
WINAPI
CreateThreadpoolTimer
(
PTP_TIMER_CALLBACK
callback
,
PVOID
userdata
,
...
...
dlls/kernelbase/kernelbase.spec
View file @
cf415c62
...
...
@@ -225,7 +225,7 @@
@ stdcall CreateThread(ptr long ptr long long ptr) kernel32.CreateThread
@ stdcall CreateThreadpool(ptr) kernel32.CreateThreadpool
@ stdcall CreateThreadpoolCleanupGroup() kernel32.CreateThreadpoolCleanupGroup
@ st
ub
CreateThreadpoolIo
@ st
dcall CreateThreadpoolIo(ptr ptr ptr ptr) kernel32.
CreateThreadpoolIo
@ stdcall CreateThreadpoolTimer(ptr ptr ptr) kernel32.CreateThreadpoolTimer
@ stdcall CreateThreadpoolWait(ptr ptr ptr) kernel32.CreateThreadpoolWait
@ stdcall CreateThreadpoolWork(ptr ptr ptr) kernel32.CreateThreadpoolWork
...
...
include/winbase.h
View file @
cf415c62
...
...
@@ -1832,6 +1832,7 @@ WINADVAPI BOOL WINAPI CreatePrivateObjectSecurityEx(PSECURITY_DESCRIPTOR
WINADVAPI
BOOL
WINAPI
CreatePrivateObjectSecurityWithMultipleInheritance
(
PSECURITY_DESCRIPTOR
,
PSECURITY_DESCRIPTOR
,
PSECURITY_DESCRIPTOR
*
,
GUID
**
,
ULONG
,
BOOL
,
ULONG
,
HANDLE
,
PGENERIC_MAPPING
);
WINBASEAPI
PTP_POOL
WINAPI
CreateThreadpool
(
PVOID
);
WINBASEAPI
PTP_CLEANUP_GROUP
WINAPI
CreateThreadpoolCleanupGroup
(
void
);
WINBASEAPI
PTP_IO
WINAPI
CreateThreadpoolIo
(
HANDLE
,
PTP_WIN32_IO_CALLBACK
,
PVOID
,
PTP_CALLBACK_ENVIRON
);
WINBASEAPI
PTP_TIMER
WINAPI
CreateThreadpoolTimer
(
PTP_TIMER_CALLBACK
,
PVOID
,
PTP_CALLBACK_ENVIRON
);
WINBASEAPI
PTP_WAIT
WINAPI
CreateThreadpoolWait
(
PTP_WAIT_CALLBACK
,
PVOID
,
PTP_CALLBACK_ENVIRON
);
WINBASEAPI
PTP_WORK
WINAPI
CreateThreadpoolWork
(
PTP_WORK_CALLBACK
,
PVOID
,
PTP_CALLBACK_ENVIRON
);
...
...
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