SID_INFO structure (aclui.h)

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.

Syntax

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

Members

pSid

A pointer to a SID structure that identifies one of the SIDs passed into ISecurityInformation2::LookupSids.

pwzCommonName

A pointer to a string containing the common name corresponding to the SID structure specified in pSid.

pwzClass

A pointer to a string describing the SID structure as either a user or a group. The possible values of this string are as follows:

"Computer"

"Group"

"User"

pwzUPN

A pointer to the user principal name (UPN) corresponding to the SID structure specified in pSid. If a UPN has not been designated for the SID structure, the value of this parameter is NULL.

Requirements

Requirement Value
Minimum supported client Windows XP [desktop apps only]
Minimum supported server Windows Server 2003 [desktop apps only]
Header aclui.h

See also

ISecurityInformation2::LookupSids

SID