#pragma hdrstop
#endif
+#include "wx/stopwatch.h"
+
#ifndef WX_PRECOMP
#include "wx/intl.h"
#include "wx/log.h"
#endif //WX_PRECOMP
-#include "wx/longlong.h"
-#include "wx/stopwatch.h"
-
// ----------------------------------------------------------------------------
// System headers
// ----------------------------------------------------------------------------
#endif // time functions
}
-#endif // wxUSE_LONGLONG
+#else // !wxUSE_LONGLONG
+
+double wxGetLocalTimeMillis(void)
+{
+ return (double(clock()) / double(CLOCKS_PER_SEC)) * 1000.0;
+}
+
+#endif // wxUSE_LONGLONG/!wxUSE_LONGLONG