X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2ecf902bc836f2808444b34eff48cdb12f289460..e5f49cbf82c40fe1c7cc9806be06f6c1aff42659:/include/wx/stopwatch.h diff --git a/include/wx/stopwatch.h b/include/wx/stopwatch.h index d7abae28be..75f789592b 100644 --- a/include/wx/stopwatch.h +++ b/include/wx/stopwatch.h @@ -4,7 +4,7 @@ // Author: Julian Smart (wxTimer), Sylvain Bougnoux (wxStopWatch) // Created: 26.06.03 (extracted from wx/timer.h) // RCS-ID: $Id$ -// Copyright: (c) 1998-2003 wxWidgets team +// Copyright: (c) 1998-2003 Julian Smart, Sylvain Bougnoux // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -89,10 +89,14 @@ extern long WXDLLIMPEXP_BASE wxGetLocalTime(); extern long WXDLLIMPEXP_BASE wxGetUTCTime(); #if wxUSE_LONGLONG -// Get number of milliseconds since local time 00:00:00 Jan 1st 1970 -extern wxLongLong WXDLLIMPEXP_BASE wxGetLocalTimeMillis(); + typedef wxLongLong wxMilliClock_t; +#else + typedef double wxMilliClock_t; #endif // wxUSE_LONGLONG +// Get number of milliseconds since local time 00:00:00 Jan 1st 1970 +extern wxMilliClock_t WXDLLIMPEXP_BASE wxGetLocalTimeMillis(); + #define wxGetCurrentTime() wxGetLocalTime() #endif // _WX_STOPWATCH_H_