Commit e437438a authored by Daniel Lehman's avatar Daniel Lehman Committed by Alexandre Julliard

msvcp140: Add __crtGetCurrentProcessorNumber.

parent e54654ef
......@@ -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
......
......@@ -1255,6 +1255,14 @@ ULONGLONG CDECL MSVCP__crtGetTickCount64(void)
}
/*********************************************************************
* __crtGetCurrentProcessorNumber (MSVCP140.@)
*/
DWORD CDECL MSVCP__crtGetCurrentProcessorNumber(void)
{
return GetCurrentProcessorNumber();
}
/*********************************************************************
* __crtCreateSemaphoreExW (MSVCP140.@)
*/
HANDLE CDECL MSVCP__crtCreateSemaphoreExW(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment