Winstorecompat: fix CreateMutexW declaration

git-svn-id: svn+ssh://svn.code.sf.net/p/mingw-w64/code/trunk@5585 4407c894-4637-0410-b4f5-ada5f102cad1
This commit is contained in:
Jean-Baptiste Kempf 2013-02-11 12:33:04 +00:00
parent 2534293b29
commit 8e6b340795

View File

@ -37,4 +37,4 @@ HANDLE WINAPI CreateMutexW(LPSECURITY_ATTRIBUTES lpMutexAttributes, BOOL bInitia
return CreateMutexExW(lpMutexAttributes, lpName, flags, EVENT_ALL_ACCESS);
}
HANDLE WINAPI (*__MINGW_IMP_SYMBOL(CreateMutexW))(LPSECURITY_ATTRIBUTES lpMutexAttributes, BOOL bManualReset, BOOL bInitialState, LPCWSTR lpName) asm("__imp__CreateMutexW@12") = CreateMutexW;
HANDLE WINAPI (*__MINGW_IMP_SYMBOL(CreateMutexW))(LPSECURITY_ATTRIBUTES lpMutexAttributes, BOOL bInitialOwner, LPCWSTR lpName) asm("__imp__CreateMutexW@12") = CreateMutexW;