- // We use wxGetLocalTime() to get the seconds since
- // 00:00:00 Jan 1st 1970 and then whatever is available
- // to get millisecond resolution.
- //
- wxLongLong val = 1000l;
- val *= wxGetLocalTime();
-
- // If we got here, do not fail even if we can't get
- // millisecond resolution.
- //
-#if defined(__WIN32__)
- SYSTEMTIME st;
- ::GetLocalTime(&st);
- return (val + st.wMilliseconds);
-#elif defined(__VISAGECPP__)
- DATETIME dt;
- ::DosGetDateTime(&dt);
- return (val + dt.hundredths*10);
-#elif defined(HAVE_GETTIMEOFDAY)
- struct timeval tp;
- if ( wxGetTimeOfDay(&tp, (struct timezone *)NULL) != -1 )
- {
- return (val + (tp.tv_usec / 1000));
- }
-#elif defined(HAVE_FTIME)
- struct timeb tp;
- if ( ftime(&tp) == 0 )
- {
- return (val + tp.millitm);
- }
-#else
-#if !defined(__BORLANDC__) && !(defined(__VISUALC__) && defined(__WIN16__))
- #warning "wxStopWatch will be up to second resolution!"
-#endif
-#endif