2014-03-01 09:32:23 +04:00
|
|
|
|
|
|
|
#include <winpr/crt.h>
|
|
|
|
#include <winpr/error.h>
|
|
|
|
#include <winpr/wtsapi.h>
|
2016-05-30 18:54:59 +03:00
|
|
|
#include <winpr/environment.h>
|
2014-03-01 09:32:23 +04:00
|
|
|
|
|
|
|
int TestWtsApiEnumerateSessions(int argc, char* argv[])
|
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
DWORD index = 0;
|
|
|
|
DWORD count = 0;
|
|
|
|
BOOL bSuccess = 0;
|
|
|
|
HANDLE hServer = NULL;
|
|
|
|
PWTS_SESSION_INFOA pSessionInfo = NULL;
|
2016-05-30 18:54:59 +03:00
|
|
|
|
2021-07-29 11:18:52 +03:00
|
|
|
WINPR_UNUSED(argc);
|
|
|
|
WINPR_UNUSED(argv);
|
|
|
|
|
2016-05-30 18:54:59 +03:00
|
|
|
#ifndef _WIN32
|
|
|
|
if (!GetEnvironmentVariableA("WTSAPI_LIBRARY", NULL, 0))
|
|
|
|
{
|
2023-07-27 10:02:03 +03:00
|
|
|
printf("%s: No RDS environment detected, skipping test\n", __func__);
|
2016-05-30 18:54:59 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
2014-03-01 09:32:23 +04:00
|
|
|
|
|
|
|
hServer = WTS_CURRENT_SERVER_HANDLE;
|
|
|
|
|
|
|
|
count = 0;
|
|
|
|
pSessionInfo = NULL;
|
|
|
|
|
2016-05-30 18:54:59 +03:00
|
|
|
bSuccess = WTSEnumerateSessionsA(hServer, 0, 1, &pSessionInfo, &count);
|
2014-03-01 09:32:23 +04:00
|
|
|
|
|
|
|
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;
|
2014-03-01 09:32:23 +04:00
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
printf("WTSEnumerateSessions count: %" PRIu32 "\n", count);
|
2014-03-01 09:32:23 +04:00
|
|
|
|
|
|
|
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);
|
2014-03-01 09:32:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
WTSFreeMemory(pSessionInfo);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|