Ignore:
Timestamp:
Feb 22, 2000, 12:11:31 AM (26 years ago)
Author:
sandervl
Message:

PD: Added wtol, wtoi, setsystime, getsystime

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/crtdll/stubs.cpp

    r2844 r2855  
    1 /* $Id: stubs.cpp,v 1.2 2000-02-21 10:34:02 sandervl Exp $ */
     1/* $Id: stubs.cpp,v 1.3 2000-02-21 23:11:31 sandervl Exp $ */
    22
    33/*
     
    267267
    268268/*********************************************************************
    269  *                  _getsystime    (CRTDLL.127)
    270  */
    271 unsigned int CDECL CRTDLL__getsystime(struct tm *tp)
    272 {
    273   dprintf(("CRTDLL: _getsystime not implemented.\n"));
    274   SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
    275   return 0;
    276 }
    277 
    278 
    279 /*********************************************************************
    280269 *      _heapwalk                               (CRTDLL.133)
    281270 */
     
    10891078  SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
    10901079  return FALSE;
    1091 }
    1092 
    1093 
    1094 /*********************************************************************
    1095  *                  _setsystime    (CRTDLL.264)
    1096  */
    1097 unsigned int CDECL CRTDLL__setsystime(struct tm *tp, unsigned int ms)
    1098 {
    1099   dprintf(("CRTDLL: _setsystime not implemented.\n"));
    1100   SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
    1101   return 0;
    11021080}
    11031081
     
    11511129}
    11521130
    1153                        
    1154 /*********************************************************************
    1155  *      _wtoi                                   (CRTDLL.330)
    1156  */
    1157 int CDECL CRTDLL__wtoi( const wchar_t *s )
    1158 {
    1159   dprintf(("CRTDLL: _wtoi(%08xh) not implemented.\n"));
    1160   SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
    1161   return 0;
    1162 }
    1163 
    1164                                                
    1165 /*********************************************************************
    1166  *      _wtol                                   (CRTDLL.331)
    1167  */
    1168 long int CDECL CRTDLL__wtol( const wchar_t *s )
    1169 {
    1170   dprintf(("CRTDLL: _wtol(%08xh) not implemented.\n"));
    1171   SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
    1172   return 0;
    1173 }
    1174 
    11751131
    11761132/*********************************************************************
Note: See TracChangeset for help on using the changeset viewer.