wtsapi32: Add a stub for WTSLogoffSession.

oldstable
Detlef Riekenberg 2010-11-07 20:13:59 +01:00 committed by Alexandre Julliard
parent 91e3a40e41
commit 2e0e6677c6
2 changed files with 11 additions and 1 deletions

View File

@ -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.@)
*/

View File

@ -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)