ntdll: Don't return success from the NtQueryEvent stub.
This commit is contained in:
parent
114b5bdefb
commit
3a43866790
|
@ -402,7 +402,7 @@ NTSTATUS WINAPI NtQueryEvent (
|
||||||
OUT PULONG ReturnLength)
|
OUT PULONG ReturnLength)
|
||||||
{
|
{
|
||||||
FIXME("(%p)\n", EventHandle);
|
FIXME("(%p)\n", EventHandle);
|
||||||
return STATUS_SUCCESS;
|
return STATUS_NOT_IMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue