diff options
author | DRC <dcommander@users.sourceforge.net> | 2010-05-20 07:44:49 +0000 |
---|---|---|
committer | DRC <dcommander@users.sourceforge.net> | 2010-05-20 07:44:49 +0000 |
commit | c75dc44cea1877d8ec3783fb5201a2ba0f4a8d83 (patch) | |
tree | 8d5469ef4e7e7693b28c4b44cb4b57a211d0b152 /win/rfb_win32/Dialog.h | |
parent | c2d87605543e09cad3269ffbafed17759f137ed4 (diff) | |
download | tigervnc-c75dc44cea1877d8ec3783fb5201a2ba0f4a8d83.tar.gz tigervnc-c75dc44cea1877d8ec3783fb5201a2ba0f4a8d83.zip |
Fix 64-bit Windows issues
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4061 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'win/rfb_win32/Dialog.h')
-rw-r--r-- | win/rfb_win32/Dialog.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/win/rfb_win32/Dialog.h b/win/rfb_win32/Dialog.h index 9784ba46..cb23baff 100644 --- a/win/rfb_win32/Dialog.h +++ b/win/rfb_win32/Dialog.h @@ -1,4 +1,5 @@ /* Copyright (C) 2002-2005 RealVNC Ltd. All Rights Reserved. + * Copyright (C) 2010 D. R. Commander. All Rights Reserved. * * This is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -87,7 +88,7 @@ namespace rfb { void enableItem(int id, bool state); protected: - static BOOL CALLBACK staticDialogProc(HWND hwnd, UINT msg, + static INT_PTR CALLBACK staticDialogProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam); virtual BOOL dialogProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam); HINSTANCE inst; @@ -145,7 +146,7 @@ namespace rfb { protected: void setPropSheet(PropSheet* ps) {propSheet = ps;}; - static BOOL CALLBACK staticPageProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam); + static INT_PTR CALLBACK staticPageProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam); virtual BOOL dialogProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam); PROPSHEETPAGE page; PropSheet* propSheet; |