ntdll: Add stub for ApiSetQueryApiSetPresence.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
b80780ad0f
commit
3b0d064283
|
@ -1 +1 @@
|
||||||
@ stub ApiSetQueryApiSetPresence
|
@ stdcall ApiSetQueryApiSetPresence(ptr ptr) ntdll.ApiSetQueryApiSetPresence
|
||||||
|
|
|
@ -504,3 +504,15 @@ NTSTATUS WINAPI NtCreateLowBoxToken(HANDLE *token_handle, HANDLE existing_token_
|
||||||
*token_handle = NULL;
|
*token_handle = NULL;
|
||||||
return STATUS_SUCCESS;
|
return STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
* ApiSetQueryApiSetPresence (NTDLL.@)
|
||||||
|
*/
|
||||||
|
BOOL WINAPI ApiSetQueryApiSetPresence(const UNICODE_STRING *namespace, BOOLEAN *present)
|
||||||
|
{
|
||||||
|
FIXME("(%s, %p) stub!\n", debugstr_us(namespace), present);
|
||||||
|
|
||||||
|
if(present)
|
||||||
|
*present = TRUE;
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
#if you change a Nt.. function DON'T FORGET to change the
|
#if you change a Nt.. function DON'T FORGET to change the
|
||||||
#Zw one too.
|
#Zw one too.
|
||||||
|
|
||||||
|
@ stdcall ApiSetQueryApiSetPresence(ptr ptr)
|
||||||
@ stub CsrAllocateCaptureBuffer
|
@ stub CsrAllocateCaptureBuffer
|
||||||
@ stub CsrAllocateCapturePointer
|
@ stub CsrAllocateCapturePointer
|
||||||
@ stub CsrAllocateMessagePointer
|
@ stub CsrAllocateMessagePointer
|
||||||
|
|
Loading…
Reference in New Issue