2003-07-11 07:21:47 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* time.h
|
|
|
|
* Missing time functions and structures for use under WinCE
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINCE_TIME_
|
|
|
|
#define __WINCE_TIME_
|
|
|
|
|
2005-06-15 20:09:18 -04:00
|
|
|
#ifndef _TM_DEFINED
|
|
|
|
|
2003-07-11 07:21:47 -04:00
|
|
|
struct tm {
|
|
|
|
int tm_sec; /* seconds after the minute - [0,59] */
|
|
|
|
int tm_min; /* minutes after the hour - [0,59] */
|
|
|
|
int tm_hour; /* hours since midnight - [0,23] */
|
|
|
|
int tm_mday; /* day of the month - [1,31] */
|
|
|
|
int tm_mon; /* months since January - [0,11] */
|
|
|
|
int tm_year; /* years since 1900 */
|
|
|
|
int tm_wday; /* days since Sunday - [0,6] */
|
|
|
|
int tm_yday; /* days since January 1 - [0,365] */
|
|
|
|
int tm_isdst; /* daylight savings time flag */
|
|
|
|
};
|
|
|
|
|
2005-06-15 20:09:18 -04:00
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
|
2003-07-11 07:21:47 -04:00
|
|
|
struct tm * __cdecl localtime(const time_t *);
|
|
|
|
|
|
|
|
time_t __cdecl time(time_t *);
|
|
|
|
|
|
|
|
time_t __cdecl mktime(struct tm *);
|
|
|
|
|
|
|
|
struct tm * __cdecl gmtime(const time_t *);
|
|
|
|
|
|
|
|
#define _tcsftime wcsftime
|
|
|
|
|
2005-06-15 20:09:18 -04:00
|
|
|
size_t __cdecl wcsftime(wchar_t *, size_t, const wchar_t *, const struct tm *);
|
|
|
|
|
|
|
|
}
|
2003-07-11 07:21:47 -04:00
|
|
|
|
|
|
|
extern long timezone;
|
|
|
|
|
2005-06-15 20:09:18 -04:00
|
|
|
#endif // !_TM_DEFINED
|
|
|
|
|
|
|
|
#endif // __WINCE_TIME_
|
2003-07-11 07:21:47 -04:00
|
|
|
|