Ignore:
Timestamp:
Aug 19, 1999, 10:43:19 PM (26 years ago)
Author:
phaller
Message:

Add: added RtlRandom-stub, swprintf, tan to NTDLL

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/NTDLL/unknown.cpp

    r560 r591  
    1 /* $Id: unknown.cpp,v 1.5 1999-08-18 22:08:34 phaller Exp $ */
     1/* $Id: unknown.cpp,v 1.6 1999-08-19 20:43:19 phaller Exp $ */
    22
    33/*
     
    413413}
    414414
     415
     416/*****************************************************************************
     417 * Name      : RtlRandom
     418 * Purpose   : unknown
     419 * Parameters: unknown, probably wrong
     420 * Variables :
     421 * Result    :
     422 * Remark    : NTDLL.466
     423 * Status    : UNTESTED STUB
     424 *
     425 * Author    : Patrick Haller [Tue, 1999/06/01 09:00]
     426 *****************************************************************************/
     427
     428DWORD WIN32API RtlRandom(DWORD x1)
     429{
     430  dprintf(("NTDLL: RtlRandom(%08xh) not implemented.\n",
     431           x1));
     432
     433  return rand();
     434}
     435
Note: See TracChangeset for help on using the changeset viewer.