#ifndef _NTSEAPI_H
// private
typedef struct _TOKEN_SECURITY_ATTRIBUTE_RELATIVE_V1
{
UNICODE_STRING Name;
USHORT ValueType;
USHORT Reserved;
ULONG Flags;
ULONG ValueCount;
union
{
ULONG Int64[ANYSIZE_ARRAY];
ULONG Uint64[ANYSIZE_ARRAY];
ULONG String[ANYSIZE_ARRAY];
ULONG Fqbn[ANYSIZE_ARRAY];
ULONG OctetString[ANYSIZE_ARRAY];
} Values;
} TOKEN_SECURITY_ATTRIBUTE_RELATIVE_V1, *PTOKEN_SECURITY_ATTRIBUTE_RELATIVE_V1;
View code on GitHub
No description available.