Ignore:
Timestamp:
Aug 18, 1999, 9:35:43 PM (26 years ago)
Author:
phaller
Message:

Add: few more exception handling stubs

File:
1 edited

Legend:

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

    r554 r555  
    1 /* $Id: time.cpp,v 1.3 1999-08-18 18:49:18 phaller Exp $ */
     1/* $Id: time.cpp,v 1.4 1999-08-18 19:35:30 phaller Exp $ */
    22
    33/*
     
    212212}
    213213
     214
     215/******************************************************************************
     216 *  RtlSecondsSince1980ToTime             [NTDLL.477]
     217 */
     218BOOLEAN WINAPI RtlSecondsSince1980ToTime(LPFILETIME ft,
     219                                         LPDWORD    timeret)
     220{
     221  dprintf(("NTDLL: RtlSecondsSince1980ToTime(%08xh,%08xh) not implemented.\n",
     222           ft,
     223           timeret));
     224
     225  //*timeret = DOSFS_UnixTimeToFileTime(st,NULL);
     226  return 1;
     227}
     228
     229
    214230/******************************************************************************
    215231 *  RtlToTimeInSecondsSince1970             [NTDLL]
     
    228244
    229245/******************************************************************************
    230  *  RtlSecondsSince1970ToTime             [NTDLL]
    231  */
    232 BOOLEAN WINAPI RtlSecondsSince1970ToTime(LPSYSTEMTIME st,
    233                                          LPDWORD      timeret)
     246 *  RtlSecondsSince1970ToTime             [NTDLL.476]
     247 */
     248BOOLEAN WINAPI RtlSecondsSince1970ToTime(LPFILETIME ft,
     249                                         LPDWORD    timeret)
    234250{
    235251  dprintf(("NTDLL: RtlSecondsSince1970ToTime(%08xh,%08xh) not implemented.\n",
    236            st,
     252           ft,
    237253           timeret));
    238254
Note: See TracChangeset for help on using the changeset viewer.