git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34666
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
#ifndef __WINCE_TIME_
#define __WINCE_TIME_
#ifndef __WINCE_TIME_
#define __WINCE_TIME_
struct tm {
int tm_sec; /* seconds after the minute - [0,59] */
int tm_min; /* minutes after the hour - [0,59] */
struct tm {
int tm_sec; /* seconds after the minute - [0,59] */
int tm_min; /* minutes after the hour - [0,59] */
int tm_isdst; /* daylight savings time flag */
};
int tm_isdst; /* daylight savings time flag */
};
struct tm * __cdecl localtime(const time_t *);
time_t __cdecl time(time_t *);
struct tm * __cdecl localtime(const time_t *);
time_t __cdecl time(time_t *);
#define _tcsftime wcsftime
#define _tcsftime wcsftime
-size_t __cdecl wcsftime(wchar_t *, size_t, const wchar_t *,
- const struct tm *);
+size_t __cdecl wcsftime(wchar_t *, size_t, const wchar_t *, const struct tm *);
+
+}
+#endif // !_TM_DEFINED
+
+#endif // __WINCE_TIME_
////////////////////////////////////////////////////////////////////////
// Receive the number of seconds elapsed since midnight(00:00:00)
// and convert a time value and corrects for the local time zone
////////////////////////////////////////////////////////////////////////
// Receive the number of seconds elapsed since midnight(00:00:00)
// and convert a time value and corrects for the local time zone
return common_localtime(t, DO_GMTIME) ;
}
return common_localtime(t, DO_GMTIME) ;
}
////////////////////////////////////////////////////////////////////////
// Common code for conversion of struct tm into time_t (static)
////////////////////////////////////////////////////////////////////////
// Common code for conversion of struct tm into time_t (static)
////////////////////////////////////////////////////////////////////////
// Returns the number of seconds elapsed since
////////////////////////////////////////////////////////////////////////
// Returns the number of seconds elapsed since