f71b6b46e8
- fixed invalid, missing or additional arguments - removed all type casts from arguments - added missing (void*) typecasts for %p arguments - use inttypes defines where appropriate
23 lines
403 B
C
23 lines
403 B
C
|
|
#include <winpr/crt.h>
|
|
#include <winpr/error.h>
|
|
#include <winpr/wtsapi.h>
|
|
|
|
int TestWtsApiExtraDisconnectSession(int argc, char* argv[])
|
|
{
|
|
BOOL bSuccess;
|
|
HANDLE hServer;
|
|
|
|
hServer = WTS_CURRENT_SERVER_HANDLE;
|
|
|
|
bSuccess = WTSDisconnectSession(hServer, WTS_CURRENT_SESSION, FALSE);
|
|
|
|
if (!bSuccess)
|
|
{
|
|
printf("WTSDisconnectSession failed: %"PRIu32"\n", GetLastError());
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|