typedef struct _LUID_AND_ATTRIBUTES { /* luaa */
LUID Luid;
DWORD Attributes;
} LUID_AND_ATTRIBUTES;
The LUID_AND_ATTRIBUTES data structure represents an LUID and its attributes.
It is often desirable to associate an LUID and its attributes. For example, a LUID_AND_ATTRIBUTES data structure can represent the dynamic state of a privilege. The privilege is represented by an LUID. Privileges have attributes which indicate whether they are currently enabled or disabled.
Luid
Specifies a Locally Unique Identifier (LUID).
Attributes
Contains up to 32 bit flags. The data type of this field is quite general, and is intended to be typecast. In other words, LUID_AND_ATTRIBUTES does not define meanings for this field's bit flags.
LUID