Changeset 4537
- Timestamp:
- Oct 26, 2000, 7:26:59 PM (24 years ago)
- Location:
- trunk/src/advapi32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/advapi32/ADVAPI32.DEF ¶
r2983 r4537 1 ; $Id: ADVAPI32.DEF,v 1.1 3 2000-03-03 11:14:58 sandervl Exp $1 ; $Id: ADVAPI32.DEF,v 1.14 2000-10-26 17:26:58 sandervl Exp $ 2 2 3 3 ; … … 139 139 AdjustTokenGroups = _AdjustTokenGroups@24 @10 140 140 AdjustTokenPrivileges = _AdjustTokenPrivileges@24 @11 141 AllocateAndInitializeSid = _ RtlAllocateAndInitializeSid@44@12141 AllocateAndInitializeSid = _AllocateAndInitializeSid@44 @12 142 142 AllocateLocallyUniqueId = _AllocateLocallyUniqueId@4 @13 143 143 AreAllAccessesGranted = _AreAllAccessesGranted@8 @14 … … 241 241 EqualSid = _EqualSid@8 @111 242 242 FindFirstFreeAce = _FindFirstFreeAce@8 @112 243 FreeSid = _ RtlFreeSid@4@113243 FreeSid = _FreeSid@4 @113 244 244 ; GetAccessPermissionsForObjectA @114 245 245 ; GetAccessPermissionsForObjectW @115 -
TabularUnified trunk/src/advapi32/security.cpp ¶
r4509 r4537 1 /* $Id: security.cpp,v 1. 6 2000-10-21 14:29:49 sandervl Exp $ */1 /* $Id: security.cpp,v 1.7 2000-10-26 17:26:59 sandervl Exp $ */ 2 2 /* 3 3 * Win32 security API functions for OS/2 … … 171 171 172 172 /****************************************************************************** 173 * AllocateAndInitializeSid [ADVAPI32.11] 174 * 175 * PARAMS 176 * pIdentifierAuthority [] 177 * nSubAuthorityCount [] 178 * nSubAuthority0 [] 179 * nSubAuthority1 [] 180 * nSubAuthority2 [] 181 * nSubAuthority3 [] 182 * nSubAuthority4 [] 183 * nSubAuthority5 [] 184 * nSubAuthority6 [] 185 * nSubAuthority7 [] 186 * pSid [] 187 */ 188 BOOL WINAPI 189 AllocateAndInitializeSid( PSID_IDENTIFIER_AUTHORITY pIdentifierAuthority, 190 BYTE nSubAuthorityCount, 191 DWORD nSubAuthority0, DWORD nSubAuthority1, 192 DWORD nSubAuthority2, DWORD nSubAuthority3, 193 DWORD nSubAuthority4, DWORD nSubAuthority5, 194 DWORD nSubAuthority6, DWORD nSubAuthority7, 195 PSID *pSid ) 196 { 197 return RtlAllocateAndInitializeSid( 198 pIdentifierAuthority, nSubAuthorityCount, 199 nSubAuthority0, nSubAuthority1, nSubAuthority2, nSubAuthority3, 200 nSubAuthority4, nSubAuthority5, nSubAuthority6, nSubAuthority7, 201 pSid ); 202 } 203 204 /****************************************************************************** 205 * FreeSid [ADVAPI32.42] 206 * 207 * PARAMS 208 * pSid [] 209 */ 210 PVOID WINAPI 211 FreeSid( PSID pSid ) 212 { 213 RtlFreeSid(pSid); 214 return NULL; /* is documented like this */ 215 } 216 217 /****************************************************************************** 173 218 * CopySid [ADVAPI32.24] 174 219 *
Note:
See TracChangeset
for help on using the changeset viewer.