]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/timercmn.cpp
Added wxEVT_SCROLL[WIN]_THUMBRELEASE
[wxWidgets.git] / src / common / timercmn.cpp
index 000226700f874ea898d0e11cf711fb29c91169b2..c350e8ca5bfad362b459eddefc70c83883e88777 100644 (file)
@@ -245,6 +245,10 @@ wxLongLong wxGetLocalTimeMillis()
     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 )