diff options
author | George Hazan <ghazan@miranda.im> | 2020-01-21 19:04:27 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-01-21 19:04:27 +0300 |
commit | 9aa5329a4b4077970571f40f79486a3a1bf3e9f8 (patch) | |
tree | ee4e08d2bdc519d6df1e9fdcf8751d0e4d67af95 /plugins/VoiceService/src/options.cpp | |
parent | 1a2103e23c5b65c9a4e5eb6cc84b23f8395a0ebd (diff) |
compilation fix for 32 bit version
Diffstat (limited to 'plugins/VoiceService/src/options.cpp')
-rw-r--r-- | plugins/VoiceService/src/options.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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; |