ntdll: Don't return success from the NtQueryEvent stub.

This commit is contained in:
Hans Leidekker 2009-06-23 09:35:48 +02:00 committed by Alexandre Julliard
parent 114b5bdefb
commit 3a43866790
1 changed files with 1 additions and 1 deletions

View File

@ -402,7 +402,7 @@ NTSTATUS WINAPI NtQueryEvent (
OUT PULONG ReturnLength)
{
FIXME("(%p)\n", EventHandle);
return STATUS_SUCCESS;
return STATUS_NOT_IMPLEMENTED;
}
/*