|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| No
| Win32s
| No
| Import Library
| -
| Header File
| winnt.h
| Unicode
| No
| Platform Notes
| None
|
|
|
SID_AND_ATTRIBUTES
The SID_AND_ATTRIBUTES structure represents a security identifier (SID) and its attributes. SIDs are
used to uniquely identify users or groups.
typedef struct _SID_AND_ATTRIBUTES { // saa
PSID Sid;
DWORD Attributes;
} SID_AND_ATTRIBUTES ;
Members
Sid
Points to a SID structure.
Attributes
Specifies attributes of the SID. This value contains up to 32 one-bit flags.
Its meaning depends on the definition and use of the SID.
Remarks
A group is represented by a SID. SIDs have attributes that indicate whether
they are currently enabled, disabled, or mandatory, and how they are used. A SID_AND_ATTRIBUTES structure can represent a SID whose attributes change frequently. For
example, it is used to represent groups in the TOKEN_GROUPS structure.
See Also
SID, TOKEN_GROUPS, TOKEN_USER
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|