* include/winnt.h (TOKEN_INFORMATION_CLASS): Add
TokenGroupsAndPrivileges, TokenSessionReference, TokenSandBoxInert, TokenAuditPolicy, TokenOrigin. Reformat. (SID_NAME_USE): Add SidTypeComputer. Reformat. Thanks to Gabriel Linder <mingwlinder@users.sourceforge.net>
This commit is contained in:
parent
a8dead4476
commit
91ce86e773
|
@ -1,3 +1,12 @@
|
||||||
|
2004-12-07 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
|
* include/winnt.h (TOKEN_INFORMATION_CLASS): Add
|
||||||
|
TokenGroupsAndPrivileges, TokenSessionReference,
|
||||||
|
TokenSandBoxInert, TokenAuditPolicy, TokenOrigin.
|
||||||
|
Reformat.
|
||||||
|
(SID_NAME_USE): Add SidTypeComputer. Reformat.
|
||||||
|
Thanks to Gabriel Linder <mingwlinder@users.sourceforge.net>
|
||||||
|
|
||||||
2004-12-02 Danny Smith <dannysmith@users.sourceforge.net>
|
2004-12-02 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
* lib/comctl32.def (ImageList_Copy, ImageList_DrawIndirect,
|
* lib/comctl32.def (ImageList_Copy, ImageList_DrawIndirect,
|
||||||
|
|
|
@ -2115,15 +2115,34 @@ typedef struct _SECURITY_DESCRIPTOR {
|
||||||
PACL Dacl;
|
PACL Dacl;
|
||||||
} SECURITY_DESCRIPTOR, *PSECURITY_DESCRIPTOR, *PISECURITY_DESCRIPTOR;
|
} SECURITY_DESCRIPTOR, *PSECURITY_DESCRIPTOR, *PISECURITY_DESCRIPTOR;
|
||||||
typedef enum _TOKEN_INFORMATION_CLASS {
|
typedef enum _TOKEN_INFORMATION_CLASS {
|
||||||
TokenUser=1,TokenGroups,TokenPrivileges,TokenOwner,
|
TokenUser=1,
|
||||||
TokenPrimaryGroup,TokenDefaultDacl,TokenSource,TokenType,
|
TokenGroups,
|
||||||
TokenImpersonationLevel,TokenStatistics,TokenRestrictedSids,
|
TokenPrivileges,
|
||||||
TokenSessionId
|
TokenOwner,
|
||||||
|
TokenPrimaryGroup,
|
||||||
|
TokenDefaultDacl,
|
||||||
|
TokenSource,
|
||||||
|
TokenType,
|
||||||
|
TokenImpersonationLevel,
|
||||||
|
TokenStatistics,
|
||||||
|
TokenRestrictedSids,
|
||||||
|
TokenSessionId,
|
||||||
|
TokenGroupsAndPrivileges,
|
||||||
|
TokenSessionReference,
|
||||||
|
TokenSandBoxInert,
|
||||||
|
TokenAuditPolicy,
|
||||||
|
TokenOrigin
|
||||||
} TOKEN_INFORMATION_CLASS;
|
} TOKEN_INFORMATION_CLASS;
|
||||||
typedef enum _SID_NAME_USE {
|
typedef enum _SID_NAME_USE {
|
||||||
SidTypeUser=1,SidTypeGroup,SidTypeDomain,SidTypeAlias,
|
SidTypeUser=1,
|
||||||
SidTypeWellKnownGroup,SidTypeDeletedAccount,SidTypeInvalid,
|
SidTypeGroup,
|
||||||
SidTypeUnknown
|
SidTypeDomain,
|
||||||
|
SidTypeAlias,
|
||||||
|
SidTypeWellKnownGroup,
|
||||||
|
SidTypeDeletedAccount,
|
||||||
|
SidTypeInvalid,
|
||||||
|
SidTypeUnknown,
|
||||||
|
SidTypeComputer
|
||||||
} SID_NAME_USE,*PSID_NAME_USE;
|
} SID_NAME_USE,*PSID_NAME_USE;
|
||||||
typedef struct _QUOTA_LIMITS {
|
typedef struct _QUOTA_LIMITS {
|
||||||
SIZE_T PagedPoolLimit;
|
SIZE_T PagedPoolLimit;
|
||||||
|
|
Loading…
Reference in New Issue