Changeset 2855 for trunk/src/crtdll/stubs.cpp
- Timestamp:
- Feb 22, 2000, 12:11:31 AM (26 years ago)
- 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:02sandervl Exp $ */1 /* $Id: stubs.cpp,v 1.3 2000-02-21 23:11:31 sandervl Exp $ */ 2 2 3 3 /* … … 267 267 268 268 /********************************************************************* 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 /*********************************************************************280 269 * _heapwalk (CRTDLL.133) 281 270 */ … … 1089 1078 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 1090 1079 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;1102 1080 } 1103 1081 … … 1151 1129 } 1152 1130 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 1175 1131 1176 1132 /*********************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.