TOKEN_PROCESS_TRUST_LEVEL - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#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;

#endif

View code on GitHub

No description available.