Updates to make latest changes compile
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5939 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -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 )
|
||||
|
||||
Reference in New Issue
Block a user