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

Add: added more stubs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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/******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.