From b9342641f520a5418fb2a8b2993148a66ea8e33b Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sat, 2 Jun 2012 15:43:18 +0000 Subject: 64-bit compilation fixes git-svn-id: http://svn.miranda-ng.org/main/trunk@263 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/LangMan/options.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/LangMan') diff --git a/plugins/LangMan/options.c b/plugins/LangMan/options.c index f8676a6b0f..487461a2d2 100644 --- a/plugins/LangMan/options.c +++ b/plugins/LangMan/options.c @@ -383,7 +383,7 @@ static int CALLBACK CompareListItem(LPARAM lParam1,LPARAM lParam2,LPARAM lParamS static HWND hwndLangOpt; -static BOOL CALLBACK LangOptDlgProc(HWND hwndDlg,UINT msg,WPARAM wParam,LPARAM lParam) +static INT_PTR CALLBACK LangOptDlgProc(HWND hwndDlg,UINT msg,WPARAM wParam,LPARAM lParam) { switch(msg) { case WM_INITDIALOG: @@ -534,7 +534,7 @@ static BOOL CALLBACK LangOptDlgProc(HWND hwndDlg,UINT msg,WPARAM wParam,LPARAM l break; #if defined(_UNICODE) case WM_NOTIFYFORMAT: - SetWindowLong(hwndDlg,DWL_MSGRESULT,NFR_UNICODE); + SetWindowLong(hwndDlg,DWLP_MSGRESULT,NFR_UNICODE); return TRUE; #endif case WM_NOTIFY: -- cgit v1.2.3