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/unknown.cpp

    r430 r555  
    1 /* $Id: unknown.cpp,v 1.2 1999-08-05 23:28:33 phaller Exp $ */
     1/* $Id: unknown.cpp,v 1.3 1999-08-18 19:35:31 phaller Exp $ */
    22
    33/*
     
    146146
    147147
     148/*****************************************************************************
     149 * Name      : RtlQueryTimeZoneInformation
     150 * Purpose   : unknown
     151 * Parameters: unknown, probably wrong
     152 * Variables :
     153 * Result    :
     154 * Remark    : NTDLL.?
     155 * Status    : UNTESTED STUB
     156 *
     157 * Author    : Patrick Haller [Tue, 1999/06/01 09:00]
     158 *****************************************************************************/
     159
     160DWORD WIN32API RtlQueryTimeZoneInformation(DWORD x1,
     161                                           DWORD x2,
     162                                           DWORD x3)
     163{
     164  dprintf(("NTDLL: RtlQueryTimeZoneInformation(%08xh,%08xh,%08xh) not implemented.\n",
     165           x1,
     166           x2,
     167           x3));
     168
     169  return 0;
     170}
    148171
    149172
    150173
     174
     175
     176
     177
Note: See TracChangeset for help on using the changeset viewer.