// Name: src/msw/wince/time.cpp
// Purpose: Implements missing time functionality for WinCE
// Author: Marco Cavallini (MCK) - wx@koansoftware.com
-// Modified by:
+// Modified by: Vadim Zeitlin for VC8 support
// Created: 31-08-2003
// RCS-ID: $Id$
// Copyright: (c) Marco Cavallini
#include "wx/msw/wince/time.h"
+#if defined(__VISUALC__) && (__VISUALC__ >= 1400)
+
+// VC8 does provide the time functions but not the standard ones
+#include <altcecrt.h>
+
+time_t __cdecl time(time_t *t)
+{
+ __time64_t t64;
+ if ( !_time64(&t64) )
+ return (time_t)-1;
+
+ if ( t )
+ *t = (time_t)t64;
+
+ return (time_t)t64;
+}
+
+time_t __cdecl mktime(struct tm *t)
+{
+ return (time_t)_mktime64(t);
+}
+
+#else // !VC8
+
/////////////////////////////////////////////////////////////////////////////////////////////
// //
// strftime() - taken from OpenBSD //
/* Not needed in VS Studio 2005 */
-#if !(__VISUALC__ >= 1400)
size_t wcsftime(wchar_t *s,
const size_t maxsize,
const wchar_t *format,
return sz;
}
-#endif
} /* extern "C" */
} // extern "C"
-
+#endif // VC8/!VC8