FreeRDP
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Modules Pages
winpr/libwinpr/security/security.h
1
20#ifndef WINPR_SECURITY_PRIVATE_H
21#define WINPR_SECURITY_PRIVATE_H
22
23#ifndef _WIN32
24
25#include <winpr/security.h>
26
27#include "../handle/handle.h"
28
30{
31 WINPR_HANDLE common;
32
33 LPSTR Username;
34 LPSTR Domain;
35
36 DWORD UserId;
37 DWORD GroupId;
38};
39typedef struct winpr_access_token WINPR_ACCESS_TOKEN;
40
41BOOL AccessTokenIsValid(HANDLE handle);
42
43#endif
44
45#endif /* WINPR_SECURITY_PRIVATE_H */