- return (val + st.wMilliseconds);
-#elif defined(__VISAGECPP__)
- DATETIME dt;
- ::DosGetDateTime(&dt);
- return (val + dt.hundredths*10);
-#elif defined(HAVE_FTIME)
- struct timeb tp;
- if ( ftime(&tp) == 0 )
- {
- return (val + tp.millitm);
- }
-#elif !defined(__BORLANDC__) && !(defined(__VISUALC__) && defined(__WIN16__))
- #warning "wxStopWatch will be up to second resolution!"