// ntifs.h
typedef struct _TOKEN_DEFAULT_DACL {
PACL DefaultDacl;
} TOKEN_DEFAULT_DACL, *PTOKEN_DEFAULT_DACL;
View the official Windows Driver Kit DDI reference
No description available.
The TOKEN_DEFAULT_DACL structure specifies a discretionary access-control list (DACL).
DefaultDacl
Pointer to an access control list (ACL) structure assigned by default to any objects created by the user represented by the access token.
The SeQueryInformationToken support routine retrieves the default DACL for an access token, in the form of a TOKEN_DEFAULT_DACL structure.