msvcrt: Stub implementation for wcsftime.
This commit is contained in:
parent
48d7c0bd76
commit
1b69f035e1
@ -744,7 +744,7 @@
|
|||||||
@ cdecl wcscoll(wstr wstr) MSVCRT_wcscoll
|
@ cdecl wcscoll(wstr wstr) MSVCRT_wcscoll
|
||||||
@ cdecl wcscpy(ptr wstr) ntdll.wcscpy
|
@ cdecl wcscpy(ptr wstr) ntdll.wcscpy
|
||||||
@ cdecl wcscspn(wstr wstr) ntdll.wcscspn
|
@ cdecl wcscspn(wstr wstr) ntdll.wcscspn
|
||||||
@ stub wcsftime #(ptr long wstr ptr) MSVCRT_wcsftime
|
@ cdecl wcsftime(ptr long wstr ptr) MSVCRT_wcsftime
|
||||||
@ cdecl wcslen(wstr) ntdll.wcslen
|
@ cdecl wcslen(wstr) ntdll.wcslen
|
||||||
@ cdecl wcsncat(wstr wstr long) ntdll.wcsncat
|
@ cdecl wcsncat(wstr wstr long) ntdll.wcsncat
|
||||||
@ cdecl wcsncmp(wstr wstr long) ntdll.wcsncmp
|
@ cdecl wcsncmp(wstr wstr long) ntdll.wcsncmp
|
||||||
|
@ -437,6 +437,18 @@ MSVCRT_size_t MSVCRT_strftime( char *str, MSVCRT_size_t max, const char *format,
|
|||||||
return strftime( str, max, format, &tm );
|
return strftime( str, max, format, &tm );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
* wcsftime (MSVCRT.@)
|
||||||
|
*/
|
||||||
|
MSVCRT_size_t MSVCRT_wcsftime( MSVCRT_wchar_t *str, MSVCRT_size_t max,
|
||||||
|
const MSVCRT_wchar_t *format, const struct MSVCRT_tm *mstm )
|
||||||
|
{
|
||||||
|
FIXME( "%p, %d, %s, %p - stub\n", str, max, debugstr_w(format), mstm );
|
||||||
|
|
||||||
|
*str = '\0';
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
* asctime (MSVCRT.@)
|
* asctime (MSVCRT.@)
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user