#ifndef __WINCE_TIME_
#define __WINCE_TIME_
+#ifndef _TM_DEFINED
+
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 */
};
+extern "C"
+{
+
struct tm * __cdecl localtime(const time_t *);
time_t __cdecl time(time_t *);
#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 *);
+
+}
extern long timezone;
-#endif
+#endif // !_TM_DEFINED
+
+#endif // __WINCE_TIME_
return res;
}
+extern "C"
+{
+
////////////////////////////////////////////////////////////////////////
// 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) ;
}
+}
////////////////////////////////////////////////////////////////////////
// Common code for conversion of struct tm into time_t (static)
return prog ;
}
+extern "C"
+{
////////////////////////////////////////////////////////////////////////
// Returns the number of seconds elapsed since
return 0;
}
+
+} // extern "C"