#ifndef _NTSAM_H
/**
* The SR_SECURITY_DESCRIPTOR structure contains information about the security privileges of the user.
*
* \sa https://learn.microsoft.com/en-us/windows/win32/api/subauth/ns-subauth-sr_security_descriptor
*/
typedef struct _SR_SECURITY_DESCRIPTOR
{
ULONG Length; // Indicates the size in bytes of the structure.
PUCHAR SecurityDescriptor; // Indicates the user's security privileges.
} SR_SECURITY_DESCRIPTOR, *PSR_SECURITY_DESCRIPTOR;
View code on GitHubThis type is documented in the [MS-SAMR] specification.