TOKEN_SECURITY_ATTRIBUTE_RELATIVE_V1 - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTSEAPI_H

// private
typedef struct _TOKEN_SECURITY_ATTRIBUTE_RELATIVE_V1
{
    UNICODE_STRING Name;
    USHORT ValueType;
    USHORT Reserved;
    ULONG Flags;
    ULONG ValueCount;
    union
    {
        ULONG pInt64[ANYSIZE_ARRAY];
        ULONG pUint64[ANYSIZE_ARRAY];
        ULONG ppString[ANYSIZE_ARRAY];
        ULONG pFqbn[ANYSIZE_ARRAY];
        ULONG pOctetString[ANYSIZE_ARRAY];
    } Values;
} TOKEN_SECURITY_ATTRIBUTE_RELATIVE_V1, *PTOKEN_SECURITY_ATTRIBUTE_RELATIVE_V1;

#endif

View code on GitHub

No description available.