2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the Wine project.
23 #if defined(_USE_32BIT_TIME_T) && !defined(_UCRT)
24 #define _wctime32 _wctime
31 _ACRTIMP
wchar_t* __cdecl
_wasctime(const struct tm
*);
32 _ACRTIMP
size_t __cdecl
wcsftime(wchar_t*,size_t,const wchar_t*,const struct tm
*);
33 _ACRTIMP
wchar_t* __cdecl
_wctime32(const __time32_t
*);
34 _ACRTIMP
wchar_t* __cdecl
_wctime64(const __time64_t
*);
35 _ACRTIMP
wchar_t* __cdecl
_wstrdate(wchar_t*);
36 _ACRTIMP errno_t __cdecl
_wstrdate_s(wchar_t*,size_t);
37 _ACRTIMP
wchar_t* __cdecl
_wstrtime(wchar_t*);
38 _ACRTIMP errno_t __cdecl
_wstrtime_s(wchar_t*,size_t);
40 #ifndef _USE_32BIT_TIME_T
41 static inline wchar_t* _wctime(const time_t *t
) { return _wctime64(t
); }
43 static inline wchar_t* _wctime(const time_t *t
) { return _wctime32(t
); }
50 #endif /* _WTIME_DEFINED */