wtsapi32: Add a stub for WTSLogoffSession.
This commit is contained in:
parent
91e3a40e41
commit
2e0e6677c6
|
@ -141,6 +141,16 @@ void WINAPI WTSFreeMemory(PVOID pMemory)
|
|||
return;
|
||||
}
|
||||
|
||||
/************************************************************
|
||||
* WTSLogoffSession (WTSAPI32.@)
|
||||
*/
|
||||
BOOL WINAPI WTSLogoffSession(HANDLE hserver, DWORD session_id, BOOL bwait)
|
||||
{
|
||||
FIXME("(%p, 0x%x, %d): stub\n", hserver, session_id, bwait);
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/************************************************************
|
||||
* WTSOpenServerA (WTSAPI32.@)
|
||||
*/
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
@ stdcall WTSEnumerateSessionsA(long long long ptr ptr)
|
||||
@ stdcall WTSEnumerateSessionsW(long long long ptr ptr)
|
||||
@ stdcall WTSFreeMemory(ptr)
|
||||
@ stub WTSLogoffSession
|
||||
@ stdcall WTSLogoffSession(ptr long long)
|
||||
@ stdcall WTSOpenServerA(ptr)
|
||||
@ stdcall WTSOpenServerW(ptr)
|
||||
@ stdcall WTSQuerySessionInformationA(long long long ptr ptr)
|
||||
|
|
Loading…
Reference in New Issue