Changeset 560 for trunk/src


Ignore:
Timestamp:
Aug 19, 1999, 12:08:34 AM (26 years ago)
Author:
phaller
Message:

Add: added more stubs

Location:
trunk/src/NTDLL
Files:
3 edited

Legend:

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

    r557 r560  
    1 ; $Id: ntdll.def,v 1.13 1999-08-18 21:45:13 phaller Exp $
     1; $Id: ntdll.def,v 1.14 1999-08-18 22:08:33 phaller Exp $
    22
    33;Created by BLAST for IBM's compiler
     
    226226
    227227    RtlAllocateAndInitializeSid   = _RtlAllocateAndInitializeSid@44   @265
     228    RtlConvertSidToUnicodeString  = _RtlConvertSidToUnicodeString@12  @296
    228229    RtlEqualSid                   = _RtlEqualSid@8                    @352
    229230    RtlFreeSid                    = _RtlFreeSid@4                     @376
  • trunk/src/NTDLL/rtl.cpp

    r557 r560  
    1 /* $Id: rtl.cpp,v 1.4 1999-08-18 21:45:13 phaller Exp $ */
     1/* $Id: rtl.cpp,v 1.5 1999-08-18 22:08:34 phaller Exp $ */
    22
    33/*
     
    330330 */
    331331
    332 /******************************************************************************
    333  * DbgPrint [NTDLL]
    334  */
    335 /* @@@PH how to port ? */
    336 #if 0
    337 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 #endif
    369 
    370332
    371333/******************************************************************************
  • 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 $ */
    22
    33/*
     
    388388}
    389389
     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
     403DWORD 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.