msvcp140: Add __crtGetCurrentProcessorNumber.

Signed-off-by: Daniel Lehman <dlehman@esri.com>
Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Daniel Lehman 2017-03-31 14:18:27 -07:00 committed by Alexandre Julliard
parent e54654ef3f
commit e437438a12
2 changed files with 9 additions and 1 deletions

View File

@ -3764,7 +3764,7 @@
@ cdecl __crtCreateThreadpoolWait(ptr ptr ptr) MSVCP__crtCreateThreadpoolWait
@ stub __crtFlushProcessWriteBuffers
@ cdecl __crtFreeLibraryWhenCallbackReturns(ptr ptr) MSVCP__crtFreeLibraryWhenCallbackReturns
@ stub __crtGetCurrentProcessorNumber
@ cdecl __crtGetCurrentProcessorNumber() MSVCP__crtGetCurrentProcessorNumber
@ stub __crtGetFileInformationByHandleEx
@ stub __crtGetLocaleInfoEx
@ stub __crtGetSystemTimePreciseAsFileTime

View File

@ -1254,6 +1254,14 @@ ULONGLONG CDECL MSVCP__crtGetTickCount64(void)
return GetTickCount64();
}
/*********************************************************************
* __crtGetCurrentProcessorNumber (MSVCP140.@)
*/
DWORD CDECL MSVCP__crtGetCurrentProcessorNumber(void)
{
return GetCurrentProcessorNumber();
}
/*********************************************************************
* __crtCreateSemaphoreExW (MSVCP140.@)
*/