#include "precomp.h"
Go to the source code of this file.
Definition at line 25 of file ctxapi.c.
References FALSE, NT_SUCCESS, NTSTATUS(), and TRUE.
00026 { 00027 NTSTATUS status; 00028 00029 status = NtUserRemoteGetWinstationInfo((PWSXINFO)pInfo); 00030 00031 if (NT_SUCCESS(status)) { 00032 return TRUE; 00033 } 00034 else { 00035 return FALSE; 00036 } 00037 }