Changeset 4414 for trunk/include


Ignore:
Timestamp:
Oct 3, 2000, 8:22:51 PM (25 years ago)
Author:
sandervl
Message:

compile fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/wtypes.h

    r3850 r4414  
    197197#endif /* _FILETIME_ */
    198198
    199 #ifndef _SECURITY_DEFINED
    200 #define _SECURITY_DEFINED
    201 
    202 typedef DWORD ACCESS_MASK, *PACCESS_MASK;
    203 
    204 typedef struct _GENERIC_MAPPING {
    205     ACCESS_MASK GenericRead;
    206     ACCESS_MASK GenericWrite;
    207     ACCESS_MASK GenericExecute;
    208     ACCESS_MASK GenericAll;
    209 } GENERIC_MAPPING, *PGENERIC_MAPPING;
    210 
    211 typedef struct {
    212     BYTE Value[6];
    213 } SID_IDENTIFIER_AUTHORITY,*PSID_IDENTIFIER_AUTHORITY;
    214 
    215 typedef struct _SID {
    216     BYTE Revision;
    217     BYTE SubAuthorityCount;
    218     SID_IDENTIFIER_AUTHORITY IdentifierAuthority;
    219     DWORD SubAuthority[1];
    220 } SID,*PSID;
    221 
    222 /*
    223  * ACL
    224  */
    225 
    226 typedef struct _ACL {
    227     BYTE AclRevision;
    228     BYTE Sbz1;
    229     WORD AclSize;
    230     WORD AceCount;
    231     WORD Sbz2;
    232 } ACL, *PACL;
    233 
    234 typedef DWORD SECURITY_INFORMATION;
    235 typedef WORD SECURITY_DESCRIPTOR_CONTROL;
    236 
    237 /* The security descriptor structure */
    238 typedef struct {
    239     BYTE Revision;
    240     BYTE Sbz1;
    241     SECURITY_DESCRIPTOR_CONTROL Control;
    242     PSID Owner;
    243     PSID Group;
    244     PACL Sacl;
    245     PACL Dacl;
    246 } SECURITY_DESCRIPTOR, *PSECURITY_DESCRIPTOR;
    247 
    248199#ifndef _ROTFLAGS_DEFINED
    249200#define _ROTFLAGS_DEFINED
     
    252203#endif /* !defined(_ROTFLAGS_DEFINED) */
    253204
    254 #endif /* _SECURITY_DEFINED */
    255 
    256 
    257205#endif /* __WINE_WTYPES_H */
Note: See TracChangeset for help on using the changeset viewer.