New stubs strdate, strtime.
This commit is contained in:
parent
afda9a3a24
commit
057d9f23d2
|
@ -2038,3 +2038,17 @@ INT32 CRTDLL_wcstol(LPWSTR s,LPWSTR *end,INT32 base) {
|
|||
if (end) *end = s+(endA-sA); /* pointer magic checked. */
|
||||
return ret;
|
||||
}
|
||||
/*********************************************************************
|
||||
* strdate (CRTDLL.283)
|
||||
*/
|
||||
LPSTR __cdecl CRTDLL__strdate (LPSTR date)
|
||||
{ FIXME (crtdll,"%p stub\n", date);
|
||||
return 0;
|
||||
}
|
||||
/*********************************************************************
|
||||
* strtime (CRTDLL.299)
|
||||
*/
|
||||
LPSTR __cdecl CRTDLL__strtime (LPSTR date)
|
||||
{ FIXME (crtdll,"%p stub\n", date);
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -284,7 +284,7 @@ type win32
|
|||
280 cdecl _stat (str ptr) CRTDLL__stat
|
||||
281 stub _statusfp
|
||||
282 cdecl _strcmpi(str str) CRTDLL__strcmpi
|
||||
283 stub _strdate
|
||||
283 cdecl _strdate(str) CRTDLL__strdate
|
||||
284 stub _strdec
|
||||
285 cdecl _strdup(str) CRTDLL__strdup
|
||||
286 stub _strerror
|
||||
|
@ -300,7 +300,7 @@ type win32
|
|||
296 stub _strrev
|
||||
297 stub _strset
|
||||
298 stub _strspnp
|
||||
299 stub _strtime
|
||||
299 cdecl _strtime(str) CRTDLL__strtime
|
||||
300 cdecl _strupr(str) CRTDLL__strupr
|
||||
301 stub _swab
|
||||
302 stub _sys_errlist
|
||||
|
|
Loading…
Reference in New Issue