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
d0c398a5
Commit
d0c398a5
authored
Mar 10, 2017
by
Piotr Caban
Committed by
Alexandre Julliard
Mar 10, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp140: Add __crtCreateThreadpoolWait implementation.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
941ce07a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
msvcp140.spec
dlls/msvcp140/msvcp140.spec
+1
-1
misc.c
dlls/msvcp90/misc.c
+10
-0
No files found.
dlls/msvcp140/msvcp140.spec
View file @
d0c398a5
...
...
@@ -3761,7 +3761,7 @@
@ cdecl __crtCreateSemaphoreExW(ptr long long wstr long long) MSVCP__crtCreateSemaphoreExW
@ stub __crtCreateSymbolicLinkW
@ cdecl __crtCreateThreadpoolTimer(ptr ptr ptr) MSVCP__crtCreateThreadpoolTimer
@
stub
__crtCreateThreadpoolWait
@
cdecl __crtCreateThreadpoolWait(ptr ptr ptr) MSVCP
__crtCreateThreadpoolWait
@ stub __crtFlushProcessWriteBuffers
@ stub __crtFreeLibraryWhenCallbackReturns
@ stub __crtGetCurrentProcessorNumber
...
...
dlls/msvcp90/misc.c
View file @
d0c398a5
...
...
@@ -1286,6 +1286,16 @@ VOID CDECL MSVCP__crtSetThreadpoolTimer(TP_TIMER *timer,
return
SetThreadpoolTimer
(
timer
,
due_time
,
period
,
window_length
);
}
/*********************************************************************
* __crtCreateThreadpoolWait (MSVCP140.@)
*/
PTP_WAIT
CDECL
MSVCP__crtCreateThreadpoolWait
(
PTP_WAIT_CALLBACK
callback
,
PVOID
userdata
,
TP_CALLBACK_ENVIRON
*
environment
)
{
TRACE
(
"(%p %p %p)
\n
"
,
callback
,
userdata
,
environment
);
return
CreateThreadpoolWait
(
callback
,
userdata
,
environment
);
}
/* ?_Execute_once@std@@YAHAAUonce_flag@1@P6GHPAX1PAPAX@Z1@Z */
/* ?_Execute_once@std@@YAHAEAUonce_flag@1@P6AHPEAX1PEAPEAX@Z1@Z */
BOOL
__cdecl
_Execute_once
(
INIT_ONCE
*
flag
,
PINIT_ONCE_FN
func
,
void
*
param
)
...
...
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