SetSecurityDescriptorGroup
The SetSecurityDescriptorGroup
function sets the primary group information of an absolute-format security
descriptor, replacing any primary group information already present in the
security descriptor.
BOOL SetSecurityDescriptorGroup(
PSECURITY_DESCRIPTOR pSecurityDescriptor, |
// address of
security descriptor |
PSID pGroup, |
// address of SID
for group |
BOOL bGroupDefaulted |
// flag for default |
); |
|
Parameters
pSecurityDescriptor
Points to the
SECURITY_DESCRIPTOR
pGroup
Points to a SID
bGroupDefaulted
Specifies a
flag indicating whether the primary group information was derived from a
default mechanism. If this flag is TRUE, it is default information, and the
function stores this value as the SE_GROUP_DEFAULTED flag in the SECURITY_DESCRIPTOR_CONTROL
Return Values
If the
function succeeds, the return value is nonzero.
If the
function fails, the return value is zero. To get extended error information,
call GetLastError
See Also