msvcp140: Add __crtCloseThreadpoolWait.

Signed-off-by: Daniel Lehman <dlehman@esri.com>
Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Daniel Lehman 2017-03-31 13:57:09 -07:00 committed by Alexandre Julliard
parent a0cf8ce924
commit 8104282988
2 changed files with 10 additions and 1 deletions

View File

@ -3753,7 +3753,7 @@
@ cdecl -ret64 _Xtime_get_ticks() _Xtime_get_ticks
@ stub __Wcrtomb_lk
@ cdecl __crtCloseThreadpoolTimer(ptr) MSVCP__crtCloseThreadpoolTimer
@ stub __crtCloseThreadpoolWait
@ cdecl __crtCloseThreadpoolWait(ptr) MSVCP__crtCloseThreadpoolWait
@ cdecl __crtCompareStringA(long long str long str long) msvcrt.__crtCompareStringA
@ stub __crtCompareStringEx
@ cdecl __crtCompareStringW(long long wstr long wstr long) msvcrt.__crtCompareStringW

View File

@ -1305,6 +1305,15 @@ PTP_WAIT CDECL MSVCP__crtCreateThreadpoolWait(PTP_WAIT_CALLBACK callback,
return CreateThreadpoolWait(callback, userdata, environment);
}
/*********************************************************************
* __crtCloseThreadpoolWait (MSVCP140.@)
*/
VOID CDECL MSVCP__crtCloseThreadpoolWait(TP_WAIT *wait)
{
TRACE("(%p)\n", wait);
CloseThreadpoolWait(wait);
}
/*********************************************************************
* __crtSetThreadpoolWait (MSVCP140.@)
*/