diff options
author | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2009-03-29 16:31:31 +0000 |
---|---|---|
committer | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2009-03-29 16:31:31 +0000 |
commit | a54110ae83aeb7e6b31b7320bfec06562ae6b546 (patch) | |
tree | 279de9e5ac57c880725646c519b703fcbab4dbf9 /worldtime_protocol/options.cpp | |
parent | 7ca0277c12724173c8951f7db3d06edc33231f68 (diff) |
x64 portability
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@441 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'worldtime_protocol/options.cpp')
-rw-r--r-- | worldtime_protocol/options.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/worldtime_protocol/options.cpp b/worldtime_protocol/options.cpp index 9e2c750..7b04e34 100644 --- a/worldtime_protocol/options.cpp +++ b/worldtime_protocol/options.cpp @@ -28,7 +28,7 @@ void fill_timezone_list_control(HWND hwndDlg) { LISTITEM add_edit_item;
-BOOL CALLBACK DlgProcOptsEdit(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam) {
+INT_PTR CALLBACK DlgProcOptsEdit(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam) {
HWND hw;
int sel;
char buf[MAX_NAME_LENGTH];
@@ -115,7 +115,7 @@ BOOL CALLBACK DlgProcOptsEdit(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPar return FALSE;
}
-static BOOL CALLBACK DlgProcOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam) {
+static INT_PTR CALLBACK DlgProcOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam) {
HWND hw;
int sel, index;
|