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;
|
||||
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
|
||||
#Zw one too.
|
||||
|
||||
@ stdcall ApiSetQueryApiSetPresence(ptr ptr)
|
||||
@ stub CsrAllocateCaptureBuffer
|
||||
@ stub CsrAllocateCapturePointer
|
||||
@ stub CsrAllocateMessagePointer
|
||||
|
|
Loading…
Reference in New Issue