- Timestamp:
- Sep 18, 1999, 5:58:35 PM (26 years ago)
- Location:
- trunk/src/crtdll
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/crtdll/crtdll.cpp
r965 r973 1 /* $Id: crtdll.cpp,v 1. 3 1999-09-18 10:36:34 sandervl Exp $ */1 /* $Id: crtdll.cpp,v 1.4 1999-09-18 15:58:34 sandervl Exp $ */ 2 2 3 3 /* … … 1097 1097 } 1098 1098 1099 1100 /********************************************************************* 1101 * _mbbtombc (CRTDLL.182) 1102 */ 1103 unsigned int CDECL CRTDLL__mbbtombc( unsigned int ch ) 1104 { 1105 dprintf(("CRTDLL: _mbbtombc\n")); 1106 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 1107 return FALSE; 1108 } 1109 1110 1111 /********************************************************************* 1112 * _mbbtype (CRTDLL.183) 1113 */ 1114 int CDECL CRTDLL__mbbtype( unsigned char s, int i ) 1115 { 1116 dprintf(("CRTDLL: _mbbtype\n")); 1117 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 1118 return FALSE; 1119 } 1120 1121 1122 /********************************************************************* 1123 * _mbccpy (CRTDLL.184) 1124 */ 1125 void CDECL CRTDLL__mbccpy( unsigned char *dest, const unsigned char *ch ) 1126 { 1127 dprintf(("CRTDLL: _mbccpy\n")); 1128 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 1129 } 1130 1131 1132 /********************************************************************* 1133 * _mbcjistojms (CRTDLL.185) 1134 */ 1135 int CDECL CRTDLL__mbcjistojms( unsigned int ch ) 1136 { 1137 dprintf(("CRTDLL: _mbcjistojms\n")); 1138 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 1139 return FALSE; 1140 } 1141 1142 1143 /********************************************************************* 1144 * _mbcjmstojis (CRTDLL.186) 1145 */ 1146 int CDECL CRTDLL__mbcjmstojis( unsigned int ch ) 1147 { 1148 dprintf(("CRTDLL: _mbcjmstojis\n")); 1149 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 1150 return FALSE; 1151 } 1152 1153 1154 /********************************************************************* 1155 * _mbclen (CRTDLL.187) 1156 */ 1157 size_t CDECL CRTDLL__mbclen( const unsigned char *ch ) 1158 { 1159 dprintf(("CRTDLL: _mbclen\n")); 1160 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 1161 return FALSE; 1162 } 1163 1164 1165 /********************************************************************* 1166 * _mbctohira (CRTDLL.188) 1167 */ 1168 int CDECL CRTDLL__mbctohira( unsigned int ch ) 1169 { 1170 dprintf(("CRTDLL: _mbctohira\n")); 1171 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 1172 return FALSE; 1173 } 1174 1175 1176 /********************************************************************* 1177 * _mbctokata (CRTDLL.189) 1178 */ 1179 int CDECL CRTDLL__mbctokata( unsigned int ch ) 1180 { 1181 dprintf(("CRTDLL: _mbctokata\n")); 1182 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 1183 return FALSE; 1184 } 1185 1186 1187 /********************************************************************* 1188 * _mbctolower (CRTDLL.190) 1189 */ 1190 unsigned int CDECL CRTDLL__mbctolower( unsigned int ch ) 1191 { 1192 dprintf(("CRTDLL: _mbctolower\n")); 1193 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 1194 return FALSE; 1195 } 1196 1197 1198 /********************************************************************* 1199 * _mbctombb (CRTDLL.191) 1200 */ 1201 unsigned int CDECL CRTDLL__mbctombb( unsigned int ch ) 1202 { 1203 dprintf(("CRTDLL: _mbctombb\n")); 1204 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 1205 return FALSE; 1206 } 1207 1208 1209 /********************************************************************* 1210 * _mbctoupper (CRTDLL.192) 1211 */ 1212 unsigned int CDECL CRTDLL__mbctoupper( unsigned int ch ) 1213 { 1214 dprintf(("CRTDLL: _mbctoupper\n")); 1215 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 1216 return FALSE; 1217 } 1218 1219 1220 /********************************************************************* 1221 * _mbsbtype (CRTDLL.194) 1222 */ 1223 int CDECL CRTDLL__mbsbtype( const unsigned char *s1, int ch ) 1224 { 1225 dprintf(("CRTDLL: _mbsbtype\n")); 1226 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 1227 return FALSE; 1228 } 1229 1230 1231 /********************************************************************* 1232 * _mbscat (CRTDLL.195) 1233 */ 1234 unsigned char * CDECL CRTDLL__mbscat( unsigned char *s1, const unsigned char *s2 ) 1235 { 1236 dprintf(("CRTDLL: _mbscat\n")); 1237 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 1238 return FALSE; 1239 } 1240 1241 1242 /********************************************************************* 1243 * _mbschr (CRTDLL.196) 1244 */ 1245 unsigned char * CDECL CRTDLL__mbschr( const unsigned char *s, unsigned int ch ) 1246 { 1247 dprintf(("CRTDLL: _mbschr\n")); 1248 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 1249 return FALSE; 1250 } 1251 1252 1253 /********************************************************************* 1254 * _mbscmp (CRTDLL.197) 1255 */ 1256 int CDECL CRTDLL__mbscmp( const unsigned char *s1, const unsigned char *s2 ) 1257 { 1258 dprintf(("CRTDLL: _mbscmp\n")); 1259 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 1260 return FALSE; 1261 } 1262 1263 1264 /********************************************************************* 1265 * _mbscpy (CRTDLL.198) 1266 */ 1267 unsigned char * CDECL CRTDLL__mbscpy( unsigned char *s1, const unsigned char *s2 ) 1268 { 1269 dprintf(("CRTDLL: _mbscpy\n")); 1270 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 1271 return FALSE; 1272 } 1099 // unsigned int _mbbtombc( unsigned int __ch ); 1100 // unsigned int _mbctombb( unsigned int __ch ); 1273 1101 1274 1102 … … 1282 1110 return FALSE; 1283 1111 } 1112 1284 1113 1285 1114 … … 3172 3001 3173 3002 3174 INT WINAPI lstrncmpiA( LPCSTR str1, LPCSTR str2, INT n )3175 {3176 dprintf(("CRTDLL: lstrncmpiA\n"));3177 //CB: implement!3178 return 0;3179 } -
trunk/src/crtdll/crtdll.def
r965 r973 1 ; $Id: crtdll.def,v 1. 3 1999-09-18 10:36:35 sandervl Exp $1 ; $Id: crtdll.def,v 1.4 1999-09-18 15:58:35 sandervl Exp $ 2 2 3 3 ;Created by BLAST for IBM's compiler … … 284 284 _makepath = _CRTDLL__makepath @180 285 285 _matherr = _CRTDLL__matherr @181 286 _mbbtombc = _CRTDLL__mbbtombc @182 287 _mbbtype = _CRTDLL__mbbtype @183 288 _mbccpy = _CRTDLL__mbccpy @184 289 _mbcjistojms = _CRTDLL__mbcjistojms @185 290 _mbcjmstojis = _CRTDLL__mbcjmstojis @186 291 _mbclen = _CRTDLL__mbclen @187 292 _mbctohira = _CRTDLL__mbctohira @188 293 _mbctokata = _CRTDLL__mbctokata @189 294 _mbctolower = _CRTDLL__mbctolower @190 295 _mbctombb = _CRTDLL__mbctombb @191 296 _mbctoupper = _CRTDLL__mbctoupper @192 297 ; _mbctype @193 298 _mbsbtype = _CRTDLL__mbsbtype @194 299 _mbscat = _CRTDLL__mbscat @195 300 _mbschr = _CRTDLL__mbschr @196 301 _mbscmp = _CRTDLL__mbscmp @197 302 _mbscpy = _CRTDLL__mbscpy @198 286 303 287 _mbscspn = _CRTDLL__mbscspn @199 304 288 -
trunk/src/crtdll/makefile
r864 r973 1 # $Id: makefile,v 1. 1 1999-09-07 20:41:46sandervl Exp $1 # $Id: makefile,v 1.2 1999-09-18 15:58:35 sandervl Exp $ 2 2 3 3 # … … 10 10 PDWIN32_LIB = ..\..\lib 11 11 PDWIN32_BIN = ..\..\bin 12 PDWIN32_TOOLS = ..\..\tools\bin 12 13 13 14
Note:
See TracChangeset
for help on using the changeset viewer.