Ignore:
Timestamp:
Aug 18, 1999, 8:49:18 PM (26 years ago)
Author:
phaller
Message:

Add: RtlSecondsSince1970ToTime added

File:
1 edited

Legend:

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

    r97 r554  
    1 /* $Id: time.cpp,v 1.2 1999-06-10 17:06:47 phaller Exp $ */
     1/* $Id: time.cpp,v 1.3 1999-08-18 18:49:18 phaller Exp $ */
    22
    33/*
     
    228228
    229229/******************************************************************************
     230 *  RtlSecondsSince1970ToTime             [NTDLL]
     231 */
     232BOOLEAN WINAPI RtlSecondsSince1970ToTime(LPSYSTEMTIME st,
     233                                         LPDWORD      timeret)
     234{
     235  dprintf(("NTDLL: RtlSecondsSince1970ToTime(%08xh,%08xh) not implemented.\n",
     236           st,
     237           timeret));
     238
     239  //*timeret = DOSFS_UnixTimeToFileTime(st,NULL);
     240  return 1;
     241}
     242
     243
     244/******************************************************************************
    230245 * RtlTimeToElapsedTimeFields [NTDLL.502]
    231246 * FIXME: prototype guessed
Note: See TracChangeset for help on using the changeset viewer.