FreeRDP/winpr/libwinpr/wtsapi/test/TestWtsApiEnumerateSessions.c

52 lines
1.1 KiB
C
Raw Normal View History

#include <winpr/crt.h>
#include <winpr/error.h>
#include <winpr/wtsapi.h>
#include <winpr/environment.h>
int TestWtsApiEnumerateSessions(int argc, char* argv[])
{
DWORD index = 0;
DWORD count = 0;
BOOL bSuccess = 0;
HANDLE hServer = NULL;
PWTS_SESSION_INFOA pSessionInfo = NULL;
2021-07-29 11:18:52 +03:00
WINPR_UNUSED(argc);
WINPR_UNUSED(argv);
#ifndef _WIN32
if (!GetEnvironmentVariableA("WTSAPI_LIBRARY", NULL, 0))
{
printf("%s: No RDS environment detected, skipping test\n", __func__);
return 0;
}
#endif
hServer = WTS_CURRENT_SERVER_HANDLE;
count = 0;
pSessionInfo = NULL;
bSuccess = WTSEnumerateSessionsA(hServer, 0, 1, &pSessionInfo, &count);
if (!bSuccess)
{
2019-11-06 17:24:51 +03:00
printf("WTSEnumerateSessions failed: %" PRIu32 "\n", GetLastError());
2014-04-09 18:01:58 +04:00
return 0;
}
2019-11-06 17:24:51 +03:00
printf("WTSEnumerateSessions count: %" PRIu32 "\n", count);
for (index = 0; index < count; index++)
{
2019-11-06 17:24:51 +03:00
printf("[%" PRIu32 "] SessionId: %" PRIu32 " WinstationName: '%s' State: %s (%u)\n", index,
pSessionInfo[index].SessionId, pSessionInfo[index].pWinStationName,
WTSSessionStateToString(pSessionInfo[index].State), pSessionInfo[index].State);
}
WTSFreeMemory(pSessionInfo);
return 0;
}