Ignore:
Timestamp:
Dec 18, 1999, 9:01:14 PM (26 years ago)
Author:
sandervl
Message:

Partially implemented some Token & SID apis

File:
1 edited

Legend:

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

    r638 r2122  
    1 /* $Id: ntdll.h,v 1.7 1999-08-22 22:45:52 sandervl Exp $ */
     1/* $Id: ntdll.h,v 1.8 1999-12-18 20:01:14 sandervl Exp $ */
    22
    33/*
     
    4545
    4646
     47//SvL: Internal heap allocation definitions for NTDLL
     48extern HANDLE NTDLL_hHeap;
     49#define Heap_Alloc(a)   HeapAlloc(NTDLL_hHeap, HEAP_ZERO_MEMORY, a)
     50#define Heap_Free(a)    HeapFree(NTDLL_hHeap, 0, (PVOID)a)
    4751
    4852typedef struct _IO_STATUS_BLOCK
     
    367371 */
    368372
    369 BOOLEAN WINAPI RtlAllocateAndInitializeSid (
    370    PSID_IDENTIFIER_AUTHORITY pIdentifierAuthority,
    371    DWORD nSubAuthorityCount,
    372    DWORD x3,
    373    DWORD x4,
    374    DWORD x5,
    375    DWORD x6,
    376    DWORD x7,
    377    DWORD x8,
    378    DWORD x9,
    379    DWORD x10,
    380    PSID pSid);
    381 
    382 DWORD WINAPI RtlEqualSid(DWORD x1,DWORD x2);
    383 DWORD WINAPI RtlFreeSid(DWORD x1);
     373BOOLEAN WINAPI RtlAllocateAndInitializeSid ( PSID_IDENTIFIER_AUTHORITY pIdentifierAuthority,
     374                                             BYTE nSubAuthorityCount,
     375                                             DWORD nSubAuthority0,
     376                                             DWORD nSubAuthority1,
     377                                             DWORD nSubAuthority2,
     378                                             DWORD nSubAuthority3,
     379                                             DWORD nSubAuthority4,
     380                                             DWORD nSubAuthority5,
     381                                             DWORD nSubAuthority6,
     382                                             DWORD nSubAuthority7,
     383                                             PSID *pSid);
     384       
     385BOOL WINAPI RtlEqualSid(PSID pSid1, PSID pSid2);
     386VOID* WINAPI RtlFreeSid(PSID pSid);
    384387DWORD WINAPI RtlLengthRequiredSid(DWORD nrofsubauths);
    385388DWORD WINAPI RtlLengthSid(PSID sid);
Note: See TracChangeset for help on using the changeset viewer.