kernel32: Added implementation for UnregisterWaitEx.

This commit is contained in:
Alexandre Julliard 2008-09-11 11:49:40 +02:00
parent 67a25b57fb
commit ee375f7c22
1 changed files with 7 additions and 2 deletions

View File

@ -308,8 +308,13 @@ BOOL WINAPI UnregisterWait( HANDLE WaitHandle )
*/
BOOL WINAPI UnregisterWaitEx( HANDLE WaitHandle, HANDLE CompletionEvent )
{
FIXME("%p %p\n",WaitHandle, CompletionEvent);
return FALSE;
NTSTATUS status;
TRACE("%p %p\n",WaitHandle, CompletionEvent);
status = RtlDeregisterWaitEx( WaitHandle, CompletionEvent );
if (status != STATUS_SUCCESS) SetLastError( RtlNtStatusToDosError(status) );
return !status;
}
/***********************************************************************