From 9aa5329a4b4077970571f40f79486a3a1bf3e9f8 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Tue, 21 Jan 2020 19:04:27 +0300 Subject: compilation fix for 32 bit version --- plugins/VoiceService/src/options.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/VoiceService/src/options.cpp') diff --git a/plugins/VoiceService/src/options.cpp b/plugins/VoiceService/src/options.cpp index ac5560e863..98a4b868d2 100644 --- a/plugins/VoiceService/src/options.cpp +++ b/plugins/VoiceService/src/options.cpp @@ -55,7 +55,7 @@ static OptPageControl popupsControls[] = { // Functions ////////////////////////////////////////////////////////////////////////////////////// -static LRESULT CALLBACK OptionsDlgProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam) +static INT_PTR CALLBACK OptionsDlgProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam) { return SaveOptsDlgProc(optionsControls, _countof(optionsControls), MODULE_NAME, hwndDlg, msg, wParam, lParam); } @@ -93,7 +93,7 @@ static void PopupsEnableDisableCtrls(HWND hwndDlg) IsDlgButtonChecked(hwndDlg, IDC_DELAYCUSTOM)); } -static LRESULT CALLBACK PopupsDlgProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam) +static INT_PTR CALLBACK PopupsDlgProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam) { switch (msg) { case WM_INITDIALOG: @@ -271,7 +271,7 @@ int ImageList_AddIcon_NotShared(HIMAGELIST hIml, int iconId) } -static LRESULT CALLBACK AutoDlgProc(HWND hwndDlg, UINT msg, WPARAM, LPARAM lParam) +static INT_PTR CALLBACK AutoDlgProc(HWND hwndDlg, UINT msg, WPARAM, LPARAM lParam) { static HICON hAnswerIcon, hDropIcon; -- cgit v1.2.3