Commit 3b0d0642 authored by Michael Müller's avatar Michael Müller Committed by Alexandre Julliard

ntdll: Add stub for ApiSetQueryApiSetPresence.

parent b80780ad
@ stub ApiSetQueryApiSetPresence @ stdcall ApiSetQueryApiSetPresence(ptr ptr) ntdll.ApiSetQueryApiSetPresence
...@@ -504,3 +504,15 @@ NTSTATUS WINAPI NtCreateLowBoxToken(HANDLE *token_handle, HANDLE existing_token_ ...@@ -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 @@ ...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment