NTDLL: add Pointer types for token structures

Mike McCormack mike at codeweavers.com
Sun Jun 26 21:59:29 CDT 2005


ChangeLog:
* add Pointer types for token structures
-------------- next part --------------
Index: include/winnt.h
===================================================================
RCS file: /home/wine/wine/include/winnt.h,v
retrieving revision 1.212
diff -u -p -r1.212 winnt.h
--- include/winnt.h	20 Jun 2005 10:32:31 -0000	1.212
+++ include/winnt.h	27 Jun 2005 03:01:29 -0000
@@ -3013,7 +3013,7 @@ typedef struct _TOKEN_OWNER {
 
 typedef struct _TOKEN_PRIMARY_GROUP {
   PSID PrimaryGroup;
-} TOKEN_PRIMARY_GROUP;
+} TOKEN_PRIMARY_GROUP, *PTOKEN_PRIMARY_GROUP;
 
 
 /*
@@ -3022,7 +3022,7 @@ typedef struct _TOKEN_PRIMARY_GROUP {
 
 typedef struct _TOKEN_DEFAULT_DACL {
   PACL DefaultDacl;
-} TOKEN_DEFAULT_DACL;
+} TOKEN_DEFAULT_DACL, *PTOKEN_DEFAULT_DACL;
 
 /*
  * TOKEN_SOURCEL
@@ -3033,7 +3033,7 @@ typedef struct _TOKEN_DEFAULT_DACL {
 typedef struct _TOKEN_SOURCE {
   char SourceName[TOKEN_SOURCE_LENGTH];
   LUID SourceIdentifier;
-} TOKEN_SOURCE;
+} TOKEN_SOURCE, *PTOKEN_SOURCE;
 
 /*
  * TOKEN_TYPE


More information about the wine-patches mailing list