diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2012-07-29 21:29:51 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2012-07-29 21:29:51 +0000 |
commit | 315349055c8d157fcbf82122f3b56d40892fd073 (patch) | |
tree | 94a0c29f49f1cecee0cf036d61461c55b385f71e /plugins | |
parent | 1a5806272da2ff68484424e60f73ada2f6b092f2 (diff) |
x64 signature fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@1257 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/StatusPlugins/confirmdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/StatusPlugins/confirmdialog.cpp b/plugins/StatusPlugins/confirmdialog.cpp index ffaf7a4c9f..8db3ce577b 100644 --- a/plugins/StatusPlugins/confirmdialog.cpp +++ b/plugins/StatusPlugins/confirmdialog.cpp @@ -165,7 +165,7 @@ static int SetStatusList(HWND hwndDlg) return 0;
}
-static BOOL CALLBACK ConfirmDlgProc(HWND hwndDlg,UINT msg,WPARAM wParam,LPARAM lParam)
+static INT_PTR CALLBACK ConfirmDlgProc(HWND hwndDlg,UINT msg,WPARAM wParam,LPARAM lParam)
{
switch(msg) {
case WM_INITDIALOG:
@@ -434,7 +434,7 @@ INT_PTR ShowConfirmDialogEx(WPARAM wParam, LPARAM lParam) timeOut = DEF_CLOSE_TIME;
if ( GetWindow(win, 0) == NULL ) {
- win = CreateDialogParam( hInst,(LPCTSTR)MAKEINTRESOURCE(IDD_CONFIRMDIALOG),(HWND)NULL,(DLGPROC)ConfirmDlgProc,(LPARAM)NULL);
+ win = CreateDialogParam( hInst,MAKEINTRESOURCE(IDD_CONFIRMDIALOG),NULL,ConfirmDlgProc,NULL);
EnableWindow(win,TRUE);
}
|