|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| No
| Win32s
| No
| Import Library
| -
| Header File
| winnt.h
| Unicode
| No
| Platform Notes
| None
|
|
|
TOKEN_GROUPS
The TOKEN_GROUPS structure contains information about a set of groups in an access token.
typedef struct _TOKEN_GROUPS { // tg
DWORD GroupCount;
SID_AND_ATTRIBUTES Groups[ANYSIZE_ARRAY];
} TOKEN_GROUPS;
Members
GroupCount
Specifies the number of groups in the access token.
Groups
Specifies an array of SID_AND_ATTRIBUTES structures containing a token's group security identifiers (SIDs) and
corresponding attributes.
The following attributes can be used with this parameter:
Value
| Meaning
| SE_GROUP_MANDATORY
| The group cannot be disabled.
| SE_GROUP_ENABLED_BY_DEFAULT
| The group is enabled by default.
| SE_GROUP_ENABLED
| The group is enabled.
| SE_GROUP_OWNER
| The user is the owner of the group or the SID can be assigned as the owner of
the token or objects.
| SE_GROUP_LOGON_ID
| The group is a logon identifier.
|
See Also
AdjustTokenGroups, SID_AND_ATTRIBUTES, TOKEN_CONTROL, TOKEN_DEFAULT_DACL, TOKEN_INFORMATION_CLASS, TOKEN_OWNER, TOKEN_PRIMARY_GROUP, TOKEN_PRIVILEGES, TOKEN_SOURCE, TOKEN_STATISTICS, TOKEN_TYPE, 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
|