- Timestamp:
- Aug 19, 1999, 12:08:34 AM (26 years ago)
- Location:
- trunk/src/NTDLL
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/NTDLL/ntdll.def
r557 r560 1 ; $Id: ntdll.def,v 1.1 3 1999-08-18 21:45:13 phaller Exp $1 ; $Id: ntdll.def,v 1.14 1999-08-18 22:08:33 phaller Exp $ 2 2 3 3 ;Created by BLAST for IBM's compiler … … 226 226 227 227 RtlAllocateAndInitializeSid = _RtlAllocateAndInitializeSid@44 @265 228 RtlConvertSidToUnicodeString = _RtlConvertSidToUnicodeString@12 @296 228 229 RtlEqualSid = _RtlEqualSid@8 @352 229 230 RtlFreeSid = _RtlFreeSid@4 @376 -
trunk/src/NTDLL/rtl.cpp
r557 r560 1 /* $Id: rtl.cpp,v 1. 4 1999-08-18 21:45:13phaller Exp $ */1 /* $Id: rtl.cpp,v 1.5 1999-08-18 22:08:34 phaller Exp $ */ 2 2 3 3 /* … … 330 330 */ 331 331 332 /******************************************************************************333 * DbgPrint [NTDLL]334 */335 /* @@@PH how to port ? */336 #if 0337 void __cdecl DbgPrint(LPCSTR fmt,LPVOID args)338 {339 dprintf(("NTDLL: DbgPrint(%s,08xh) not supported.\n",340 fmt,341 args));342 343 /* hmm, raise exception? */344 }345 346 DWORD WINAPI NtRaiseException (DWORD dwExceptionCode,347 DWORD dwExceptionFlags,348 DWORD nNumberOfArguments,349 CONST ULONG_PTR *lpArguments)350 {351 dprintf(("NTDLL: NtRaiseException(%08xh,%08xh,%08xh,%08xh) not implemented.\n",352 dwExceptionCode,353 dwExceptionFlags,354 nNumberOfArguments,355 lpArguments));356 357 return 0;358 }359 360 361 DWORD WINAPI RtlRaiseException (DWORD x)362 {363 dprintf(("NTDLL: RtlRaiseException(%08xh) not implemented.\n",364 x));365 366 return 0;367 }368 #endif369 370 332 371 333 /****************************************************************************** -
trunk/src/NTDLL/unknown.cpp
r557 r560 1 /* $Id: unknown.cpp,v 1. 4 1999-08-18 21:45:14 phaller Exp $ */1 /* $Id: unknown.cpp,v 1.5 1999-08-18 22:08:34 phaller Exp $ */ 2 2 3 3 /* … … 388 388 } 389 389 390 391 /***************************************************************************** 392 * Name : RtlConvertSidToUnicodeString 393 * Purpose : unknown 394 * Parameters: unknown, probably wrong 395 * Variables : 396 * Result : 397 * Remark : NTDLL.? 398 * Status : UNTESTED STUB 399 * 400 * Author : Patrick Haller [Tue, 1999/06/01 09:00] 401 *****************************************************************************/ 402 403 DWORD WIN32API RtlConvertSidToUnicodeString(DWORD x1, 404 DWORD x2, 405 DWORD x3) 406 { 407 dprintf(("NTDLL: RtlConvertSidToUnicodeString(%08xh,%08xh,%08xh) not implemented.\n", 408 x1, 409 x2, 410 x3)); 411 412 return 0; 413 } 414
Note:
See TracChangeset
for help on using the changeset viewer.