msvcrt: Stub implementation for wcsftime.

This commit is contained in:
Hans Leidekker 2006-01-23 19:29:15 +01:00 committed by Alexandre Julliard
parent 48d7c0bd76
commit 1b69f035e1
2 changed files with 13 additions and 1 deletions

View File

@ -744,7 +744,7 @@
@ cdecl wcscoll(wstr wstr) MSVCRT_wcscoll
@ cdecl wcscpy(ptr wstr) ntdll.wcscpy
@ 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 wcsncat(wstr wstr long) ntdll.wcsncat
@ cdecl wcsncmp(wstr wstr long) ntdll.wcsncmp

View File

@ -437,6 +437,18 @@ MSVCRT_size_t MSVCRT_strftime( char *str, MSVCRT_size_t max, const char *format,
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.@)
*/