4 * Copyright 2000 Francois Gouget.
8 #define __WINE_USE_MSVCRT
11 #include "msvcrt/sys/types.h" /* For time_t */
14 #ifndef MSVCRT_SIZE_T_DEFINED
15 typedef unsigned int MSVCRT(size_t);
16 #define MSVCRT_SIZE_T_DEFINED
19 typedef long MSVCRT(clock_t);
38 /* FIXME: Must do something for _daylight, _dstbias, _timezone, _tzname */
41 unsigned _getsystime(struct MSVCRT(tm)*);
42 unsigned _setsystime(struct MSVCRT(tm)*,unsigned);
43 char* _strdate(char*);
44 char* _strtime(char*);
47 char* MSVCRT(asctime)(const struct MSVCRT(tm)*);
48 MSVCRT(clock_t) MSVCRT(clock)(void);
49 char* MSVCRT(ctime)(const MSVCRT(time_t)*);
50 double MSVCRT(difftime)(MSVCRT(time_t),MSVCRT(time_t));
51 struct MSVCRT(tm)* MSVCRT(gmtime)(const MSVCRT(time_t)*);
52 struct MSVCRT(tm)* MSVCRT(localtime)(const MSVCRT(time_t)*);
53 MSVCRT(time_t) MSVCRT(mktime)(struct MSVCRT(tm)*);
54 size_t MSVCRT(strftime)(char*,size_t,const char*,const struct MSVCRT(tm)*);
55 MSVCRT(time_t) MSVCRT(time)(MSVCRT(time_t)*);
57 WCHAR* _wasctime(const struct MSVCRT(tm)*);
58 MSVCRT(size_t) wcsftime(WCHAR*,MSVCRT(size_t),const WCHAR*,const struct MSVCRT(tm)*);
59 WCHAR* _wctime(const MSVCRT(time_t)*);
60 WCHAR* _wstrdate(WCHAR*);
61 WCHAR* _wstrtime(WCHAR*);
67 #endif /* __WINE_TIME_H */