Commit 36728f8b authored by Martin Storsjo's avatar Martin Storsjo Committed by Alexandre Julliard

vcruntime140: Implement __vcrt_InitializeCriticalSectionEx.

parent c3e48c9b
...@@ -37,3 +37,13 @@ void CDECL __telemetry_main_return_trigger(HINSTANCE hinst) ...@@ -37,3 +37,13 @@ void CDECL __telemetry_main_return_trigger(HINSTANCE hinst)
{ {
FIXME("(%p)\n", hinst); FIXME("(%p)\n", hinst);
} }
/*********************************************************************
* __vcrtInitializeCriticalSectionEx
*/
BOOL CDECL __vcrt_InitializeCriticalSectionEx(
CRITICAL_SECTION *cs, DWORD spin_count, DWORD flags)
{
TRACE("(%p %x %x)\n", cs, spin_count, flags);
return InitializeCriticalSectionEx(cs, spin_count, flags);
}
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
@ stub __uncaught_exceptions @ stub __uncaught_exceptions
@ stub __vcrt_GetModuleFileNameW @ stub __vcrt_GetModuleFileNameW
@ stub __vcrt_GetModuleHandleW @ stub __vcrt_GetModuleHandleW
@ stub __vcrt_InitializeCriticalSectionEx @ cdecl __vcrt_InitializeCriticalSectionEx(ptr long long)
@ stub __vcrt_LoadLibraryExW @ stub __vcrt_LoadLibraryExW
@ cdecl -arch=i386 -norelay _chkesp() ucrtbase._chkesp @ cdecl -arch=i386 -norelay _chkesp() ucrtbase._chkesp
@ cdecl -arch=i386 _except_handler2(ptr ptr ptr ptr) ucrtbase._except_handler2 @ cdecl -arch=i386 _except_handler2(ptr ptr ptr ptr) ucrtbase._except_handler2
......
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