Commit 3366f184 authored by Ulrich Weigand's avatar Ulrich Weigand Committed by Alexandre Julliard

Implemented _ConfirmWin16Lock (KERNEL32.96).

parent 19cf14f5
......@@ -24,6 +24,7 @@ SEGPTR WINAPI GetpWin16Lock16(void);
VOID WINAPI _EnterSysLevel(CRITICAL_SECTION *lock);
VOID WINAPI _LeaveSysLevel(CRITICAL_SECTION *lock);
DWORD WINAPI _ConfirmWin16Lock(void);
VOID WINAPI ReleaseThunkLock(DWORD *mutex_count);
VOID WINAPI RestoreThunkLock(DWORD mutex_count);
......
......@@ -123,8 +123,10 @@ VOID WINAPI _ConfirmSysLevel(CRITICAL_SECTION *lock)
*/
DWORD WINAPI _ConfirmWin16Lock(void)
{
FIXME(win32, "()\n");
return 1;
if ( Win16Mutex.OwningThread == GetCurrentThreadId() )
return Win16Mutex.RecursionCount;
else
return 0L;
}
/************************************************************************
......
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