#ifndef _NTSEAPI_H
// rev
/**
* The TOKEN_PROCESS_TRUST_LEVEL structure contains information about
* the trust level assigned to a process token. The trust level is
* represented by a SID (Security Identifier) pointed to by TrustLevelSid.
*/
typedef struct _TOKEN_PROCESS_TRUST_LEVEL
{
PSID TrustLevelSid;
} TOKEN_PROCESS_TRUST_LEVEL, *PTOKEN_PROCESS_TRUST_LEVEL;
View code on GitHub
No description available.