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
10266f5b
Commit
10266f5b
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 __crtSetThreadpoolWait implementation.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d0c398a5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
msvcp140.spec
dlls/msvcp140/msvcp140.spec
+1
-1
misc.c
dlls/msvcp90/misc.c
+9
-0
No files found.
dlls/msvcp140/msvcp140.spec
View file @
10266f5b
...
...
@@ -3777,7 +3777,7 @@
@ cdecl __crtLCMapStringW(long long wstr long ptr long long long) msvcrt.__crtLCMapStringW
@ stub __crtSetFileInformationByHandle
@ cdecl __crtSetThreadpoolTimer(ptr ptr long long) MSVCP__crtSetThreadpoolTimer
@
stub
__crtSetThreadpoolWait
@
cdecl __crtSetThreadpoolWait(ptr long ptr) MSVCP
__crtSetThreadpoolWait
@ stub __crtWaitForThreadpoolTimerCallbacks
@ stub __set_stl_sync_api_mode
@ cdecl xtime_get(ptr long) xtime_get
dlls/msvcp90/misc.c
View file @
10266f5b
...
...
@@ -1296,6 +1296,15 @@ PTP_WAIT CDECL MSVCP__crtCreateThreadpoolWait(PTP_WAIT_CALLBACK callback,
return
CreateThreadpoolWait
(
callback
,
userdata
,
environment
);
}
/*********************************************************************
* __crtSetThreadpoolWait (MSVCP140.@)
*/
VOID
CDECL
MSVCP__crtSetThreadpoolWait
(
TP_WAIT
*
wait
,
HANDLE
handle
,
FILETIME
*
due_time
)
{
TRACE
(
"(%p %p %p)
\n
"
,
wait
,
handle
,
due_time
);
return
SetThreadpoolWait
(
wait
,
handle
,
due_time
);
}
/* ?_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