diff options
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;
|