Ignore:
Timestamp:
Dec 18, 1999, 10:45:13 PM (26 years ago)
Author:
sandervl
Message:

Token api update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/NTDLL/ntdll.h

    r2122 r2128  
    1 /* $Id: ntdll.h,v 1.8 1999-12-18 20:01:14 sandervl Exp $ */
     1/* $Id: ntdll.h,v 1.9 1999-12-18 21:45:13 sandervl Exp $ */
    22
    33/*
     
    655655PSID_IDENTIFIER_AUTHORITY WINAPI GetSidIdentifierAuthority(PSID);
    656656
     657//SvL: Security data for win32 process (nothing fancy; just trying to fool apps
     658//     into thinking the security subsystem is in perfect shape.
     659#define SECTYPE_THREAD          0
     660#define SECTYPE_PROCESS         1
     661
     662typedef struct {
     663 DWORD               dwType;
     664 TOKEN_USER          SidUser;
     665 TOKEN_GROUPS       *pTokenGroups;
     666 PRIVILEGE_SET      *pPrivilegeSet;
     667 TOKEN_PRIVILEGES   *pTokenPrivileges;
     668 TOKEN_OWNER         TokenOwner;
     669 TOKEN_PRIMARY_GROUP PrimaryGroup;
     670 TOKEN_DEFAULT_DACL  DefaultDACL;
     671 TOKEN_SOURCE        TokenSource;
     672 TOKEN_TYPE          TokenType;
     673} PROCESSTHREAD_SECURITYINFO;
     674
     675//Per process info; Should probably be stored in process database structure
     676extern PROCESSTHREAD_SECURITYINFO ProcSecInfo;
     677
    657678#ifdef __cplusplus
    658679}
Note: See TracChangeset for help on using the changeset viewer.