You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
361 B
14 lines
361 B
#ifndef _SECURENT_INC
|
|
#define _SECURENT_INC
|
|
|
|
//
|
|
// Shell helper functions for security
|
|
//
|
|
STDAPI_(PTOKEN_USER) GetUserToken(HANDLE hUser);
|
|
STDAPI_(LPTSTR) GetUserSid(HANDLE hToken);
|
|
|
|
STDAPI_(BOOL) GetUserProfileKey(HANDLE hToken, REGSAM samDesired, HKEY *phkey);
|
|
STDAPI_(BOOL) IsUserAnAdmin();
|
|
STDAPI_(BOOL) IsUserAGuest();
|
|
|
|
#endif // _SECURENT_INC
|