Commit 11651f0d authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

wtsapi32: Add a stub implementation of WTSQueryUserToken.

parent 920fc345
......@@ -222,3 +222,12 @@ BOOL WINAPI WTSUnRegisterSessionNotification(HWND hWnd)
FIXME("Stub %p\n", hWnd);
return FALSE;
}
/************************************************************
* WTSQueryUserToken (WTSAPI32.@)
*/
BOOL WINAPI WTSQueryUserToken(ULONG session_id, PHANDLE token)
{
FIXME("%u %p\n", session_id, token);
return FALSE;
}
......@@ -14,6 +14,7 @@
@ stdcall WTSQuerySessionInformationW(long long long ptr ptr)
@ stub WTSQueryUserConfigA
@ stub WTSQueryUserConfigW
@ stdcall WTSQueryUserToken(long ptr)
@ stdcall WTSRegisterSessionNotification(long long)
@ stub WTSSendMessageA
@ stub WTSSendMessageW
......
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