X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/85445d3445a8cd31784dd0dcf55521c9fea2e6a1..8ce8835c060bd2fefff34414e03bb4e6ace9be8c:/src/common/stopwatch.cpp?ds=sidebyside diff --git a/src/common/stopwatch.cpp b/src/common/stopwatch.cpp index ddf2f994a1..1ace26ef2d 100644 --- a/src/common/stopwatch.cpp +++ b/src/common/stopwatch.cpp @@ -83,6 +83,12 @@ #include #endif +#ifdef __WXPALMOS__ + #include + #include + #include +#endif + // ---------------------------------------------------------------------------- // macros // ---------------------------------------------------------------------------- @@ -240,7 +246,19 @@ wxLongLong wxGetLocalTimeMillis() // If possible, use a function which avoids conversions from // broken-up time structures to milliseconds -#if defined(__WXMSW__) && (defined(__WINE__) || defined(__MWERKS__)) +#if defined(__WXPALMOS__) + DateTimeType thenst; + thenst.second = 0; + thenst.minute = 0; + thenst.hour = 0; + thenst.day = 1; + thenst.month = 1; + thenst.year = 1970; + thenst.weekDay = 5; + uint32_t now = TimGetSeconds(); + uint32_t then = TimDateTimeToSeconds (&thenst); + return SysTimeToMilliSecs(SysTimeInSecs(now - then)); +#elif defined(__WXMSW__) && (defined(__WINE__) || defined(__MWERKS__)) // This should probably be the way all WXMSW compilers should do it // Go direct to the OS for time @@ -274,7 +292,7 @@ wxLongLong wxGetLocalTimeMillis() // ftime() is void and not int in some mingw32 headers, so don't // test the return code (well, it shouldn't fail anyhow...) - (void)ftime(&tp); + (void)::ftime(&tp); val *= tp.time; return (val + tp.millitm); #elif defined(__WXMAC__)