msvcp140: Added __crtCreateEventExW().

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Nikolay Sivov 2016-08-07 12:22:15 +03:00 committed by Alexandre Julliard
parent 57612cdefc
commit 1b8eb25ff2
2 changed files with 11 additions and 1 deletions

View File

@ -3757,7 +3757,7 @@
@ cdecl __crtCompareStringA(long long str long str long) msvcrt.__crtCompareStringA @ cdecl __crtCompareStringA(long long str long str long) msvcrt.__crtCompareStringA
@ stub __crtCompareStringEx @ stub __crtCompareStringEx
@ cdecl __crtCompareStringW(long long wstr long wstr long) msvcrt.__crtCompareStringW @ cdecl __crtCompareStringW(long long wstr long wstr long) msvcrt.__crtCompareStringW
@ stub __crtCreateEventExW @ cdecl __crtCreateEventExW(ptr wstr long long) MSVCP__crtCreateEventExW
@ stub __crtCreateSemaphoreExW @ stub __crtCreateSemaphoreExW
@ stub __crtCreateSymbolicLinkW @ stub __crtCreateSymbolicLinkW
@ stub __crtCreateThreadpoolTimer @ stub __crtCreateThreadpoolTimer

View File

@ -1122,6 +1122,16 @@ BOOL CDECL MSVCP__crtInitializeCriticalSectionEx(
return InitializeCriticalSectionEx(cs, spin_count, flags); return InitializeCriticalSectionEx(cs, spin_count, flags);
} }
/*********************************************************************
* __crtCreateEventExW (MSVCP140.@)
*/
HANDLE CDECL MSVCP__crtCreateEventExW(
SECURITY_ATTRIBUTES *attribs, LPCWSTR name, DWORD flags, DWORD access)
{
TRACE("(%p %s 0x%08x 0x%08x)\n", attribs, debugstr_w(name), flags, access);
return CreateEventExW(attribs, name, flags, access);
}
void init_misc(void *base) void init_misc(void *base)
{ {
#ifdef __x86_64__ #ifdef __x86_64__