Changeset 4364 for trunk/src/NTDLL/sec.cpp
- Timestamp:
- Oct 2, 2000, 3:10:12 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/NTDLL/sec.cpp
r2134 r4364 1 /* $Id: sec.cpp,v 1. 5 1999-12-19 12:25:55 sandervlExp $ */1 /* $Id: sec.cpp,v 1.6 2000-10-02 13:10:12 phaller Exp $ */ 2 2 3 3 /* … … 12 12 * Copyright 1996-1998 Marcus Meissner 13 13 */ 14 15 #include <odin.h> 16 #include <odinwrap.h> 17 #include <os2sel.h> 14 18 15 19 #include <stdlib.h> … … 21 25 #include <os2win.h> 22 26 #include "ntdll.h" 27 28 29 ODINDEBUGCHANNEL(NTDLL-SEC) 23 30 24 31 /* … … 169 176 * RtlInitializeSid [NTDLL.410] 170 177 */ 171 DWORD WINAPI RtlInitializeSid(PSID psid, 172 PSID_IDENTIFIER_AUTHORITY psidauth, 173 DWORD c) 178 ODINFUNCTION3(DWORD, RtlInitializeSid, 179 PSID, psid, 180 PSID_IDENTIFIER_AUTHORITY, psidauth, 181 DWORD, c) 174 182 { 175 183 BYTE a = c & 0xff; 176 177 dprintf(("NTDLL: RtlInitializeSid(%08xh,%08xh,%08xh)\n",178 psid,179 psidauth,180 c));181 184 182 185 if (a>=SID_MAX_SUB_AUTHORITIES) … … 207 210 * RtlSubAuthoritySid [NTDLL.497] 208 211 */ 209 LPDWORD WINAPI RtlSubAuthoritySid(PSID psid, 210 DWORD nr) 211 { 212 dprintf(("NTDLL: RtlSubAuthoritySid(%08xh,%08xh)\n", 213 psid, 214 nr)); 215 212 ODINFUNCTION2(LPDWORD, RtlSubAuthoritySid, 213 PSID, psid, 214 DWORD, nr) 215 { 216 216 return &(psid->SubAuthority[nr]); 217 217 }
Note:
See TracChangeset
for help on using the changeset viewer.