X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/222ed1d678dff2f5c3c4164321dd05e8f47de487..f0b1ccde63c1acd9ca18847f758603f39f22cf4b:/src/msw/timer.cpp diff --git a/src/msw/timer.cpp b/src/msw/timer.cpp index 822ece8f35..cccb8ed09f 100644 --- a/src/msw/timer.cpp +++ b/src/msw/timer.cpp @@ -9,7 +9,7 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma implementation "timer.h" #endif @@ -23,8 +23,6 @@ #if wxUSE_TIMER #ifndef WX_PRECOMP - #include "wx/hashmap.h" - #include "wx/setup.h" #include "wx/window.h" #include "wx/list.h" #include "wx/event.h" @@ -33,6 +31,8 @@ #include "wx/log.h" #endif +#include "wx/hashmap.h" + #include "wx/timer.h" #include "wx/msw/private.h" @@ -42,25 +42,20 @@ // ---------------------------------------------------------------------------- WX_DECLARE_HASH_MAP( long, - wxTimer*, + wxTimer *, wxIntegerHash, wxIntegerEqual, wxTimerMap ); wxTimerMap wxTimerList; -UINT WINAPI _EXPORT wxTimerProc(HWND hwnd, WORD, int idTimer, DWORD); + +void WINAPI wxTimerProc(HWND hwnd, WORD, int idTimer, DWORD); // ---------------------------------------------------------------------------- // macros // ---------------------------------------------------------------------------- -#ifdef __WIN32__ - #define _EXPORT -#else - #define _EXPORT _export -#endif - -// should probably be in wx/msw/private.h +// should probably be in wx/msw/missing.h #ifdef __WXMICROWIN__ #define MakeProcInstance(proc, hinst) proc #endif @@ -95,11 +90,16 @@ bool wxTimer::Start(int milliseconds, bool oneShot) wxCHECK_MSG( m_milli > 0, false, wxT("invalid value for timer timeour") ); +#ifdef __WXWINCE__ + m_id = ::SetTimer(NULL, (UINT)(m_id ? m_id : 1), + (UINT)m_milli, (TIMERPROC) wxTimerProc); +#else TIMERPROC wxTimerProcInst = (TIMERPROC) MakeProcInstance((FARPROC)wxTimerProc, wxGetInstance()); m_id = ::SetTimer(NULL, (UINT)(m_id ? m_id : 1), (UINT)m_milli, wxTimerProcInst); +#endif if ( m_id > 0 ) { @@ -143,17 +143,15 @@ void wxProcessTimer(wxTimer& timer) timer.Notify(); } -UINT WINAPI _EXPORT wxTimerProc(HWND WXUNUSED(hwnd), WORD, int idTimer, DWORD) +void WINAPI wxTimerProc(HWND WXUNUSED(hwnd), WORD, int idTimer, DWORD) { wxTimerMap::iterator node = wxTimerList.find((long)idTimer); - wxCHECK_MSG( node != wxTimerList.end(), 0, - wxT("bogus timer id in wxTimerProc") ); + wxASSERT_MSG( node != wxTimerList.end(), wxT("bogus timer id in wxTimerProc") ); wxProcessTimer(*(node->second)); - - return 0; } #endif // wxUSE_TIMER +