Applied patch [ 1195797 ] Fixes to compile on Win64

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34241 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2005-05-22 12:10:55 +00:00
parent 921c65ed3d
commit 106d80ad37
8 changed files with 21 additions and 15 deletions

View File

@@ -61,7 +61,7 @@ static wxTimerMap& TimerMap()
// ----------------------------------------------------------------------------
// timer callback used for all timers
void WINAPI wxTimerProc(HWND hwnd, UINT msg, UINT idTimer, DWORD dwTime);
void WINAPI wxTimerProc(HWND hwnd, UINT msg, UINT_PTR idTimer, DWORD dwTime);
// ----------------------------------------------------------------------------
// macros
@@ -155,7 +155,7 @@ void wxProcessTimer(wxTimer& timer)
void WINAPI
wxTimerProc(HWND WXUNUSED(hwnd),
UINT WXUNUSED(msg),
UINT idTimer,
UINT_PTR idTimer,
DWORD WXUNUSED(dwTime))
{
wxTimerMap::iterator node = TimerMap().find((unsigned long)idTimer);