Stubplement WTSQueryUserToken.
[reactos.git] / reactos / dll / win32 / wtsapi32 / wtsapi32.c
index fc40494..880f3c9 100644 (file)
@@ -487,6 +487,36 @@ BOOL WINAPI WTSQuerySessionInformationW(
     return FALSE;
 }
 
+/************************************************************
+ *                WTSQueryUserToken (WTSAPI32.@)
+ *
+ *   Obtains the primary access token of the logged-on user specified by the session ID.
+ *
+ * PARAMS
+ * SessionId [in] -- RDP session identifier
+ * phToken [out] -- pointer to the token handle for the logged-on user
+ *
+ *
+ * RETURNS 
+ * - On success - pointer to the primary token of the user
+ * - On failure - zero
+ *
+ *
+ * NOTES
+ * - token handle should be closed after use with CloseHandle
+ * - on Failure, extended error information is available via GetLastError
+ * 
+ */
+BOOL WINAPI WTSQueryUserToken(
+    ULONG SessionId,
+    PHANDLE phToken)
+{
+    *phToken = (HANDLE)0;
+    SetLastError(ERROR_NO_TOKEN);
+    FIXME("Stub %d\n", SessionId);
+    return FALSE;
+}
+
 /************************************************************
  *                WTSWaitSystemEvent (WTSAPI32.@)
  */