Changeset 2122 for trunk/src/NTDLL/ntdll.h
- Timestamp:
- Dec 18, 1999, 9:01:14 PM (26 years ago)
- 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:52sandervl Exp $ */1 /* $Id: ntdll.h,v 1.8 1999-12-18 20:01:14 sandervl Exp $ */ 2 2 3 3 /* … … 45 45 46 46 47 //SvL: Internal heap allocation definitions for NTDLL 48 extern 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) 47 51 48 52 typedef struct _IO_STATUS_BLOCK … … 367 371 */ 368 372 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); 373 BOOLEAN 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 385 BOOL WINAPI RtlEqualSid(PSID pSid1, PSID pSid2); 386 VOID* WINAPI RtlFreeSid(PSID pSid); 384 387 DWORD WINAPI RtlLengthRequiredSid(DWORD nrofsubauths); 385 388 DWORD WINAPI RtlLengthSid(PSID sid);
Note:
See TracChangeset
for help on using the changeset viewer.