Platform SDK: Access Control

SID_INFO

The SID_INFO structure contains the list of common names corresponding to the SID structures returned by ISecurityInformation2::LookupSids. It is a member of the SID_INFO_LIST structure.

typedef struct _SID_INFO {
  PSID pSid;
  PWSTR pwzCommonName;
  PWSTR pwzClass;
  PWSTR pwzUPN;
} SID_INFO, *PSID_INFO;

Members

pSid
Pointer to a SID structure that identifies one of the SIDs passed into ISecurityInformation2::LookupSids.
pwzCommonName
Pointer to a string containing the common name corresponding to the SID specified in pSid.
pwzClass
Pointer to a string describing the SID as either a user or a group. The possible values of this parameter are "User", "Group", or "Computer".
pwzUPN
Pointer to the user principal name (UPN) corresponding to the SID specified in pSid. If a UPN has not been designated for the SID, the value of this parameter is NULL.

Requirements

  Windows NT/2000: Requires Windows 2000.
  Header: Declared in Aclui.h.

See Also

Access Control Editor Overview, Access Control Editor Structures, SID, ISecurityInformation2::LookupSids