TOKEN_DEFAULT_DACL
The TOKEN_DEFAULT_DACL
structure specifies a discretionary access-control list (ACL).
typedef struct _TOKEN_DEFAULT_DACL { // tdd
PACL
DefaultDacl;
} TOKEN_DEFAULT_DACL;
Members
DefaultDacl
Points to an ACL
structure assigned by default to any objects created by the user represented by
the access token.
Remarks
The GetTokenInformation
function retrieves the default discretionary ACL for an access token, in the
form of a TOKEN_DEFAULT_DACL structure. This structure is also used with
the SetTokenInformation function to set the default discretionary ACL.
See Also