diff options
Diffstat (limited to 'plugins/CryptoPP/src/GPGw')
-rw-r--r-- | plugins/CryptoPP/src/GPGw/passdialog.cpp | 2 | ||||
-rw-r--r-- | plugins/CryptoPP/src/GPGw/passdialog.h | 2 | ||||
-rw-r--r-- | plugins/CryptoPP/src/GPGw/userdialog.cpp | 2 | ||||
-rw-r--r-- | plugins/CryptoPP/src/GPGw/userdialog.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/plugins/CryptoPP/src/GPGw/passdialog.cpp b/plugins/CryptoPP/src/GPGw/passdialog.cpp index d00753af9e..f367d66eba 100644 --- a/plugins/CryptoPP/src/GPGw/passdialog.cpp +++ b/plugins/CryptoPP/src/GPGw/passdialog.cpp @@ -3,7 +3,7 @@ char dlgpassphrase[passphrasesize];
-BOOL CALLBACK PassphraseDialogProcedure(HWND hdlg, UINT msg, WPARAM wparam, LPARAM lparam)
+INT_PTR CALLBACK PassphraseDialogProcedure(HWND hdlg, UINT msg, WPARAM wparam, LPARAM lparam)
{
switch(msg)
{
diff --git a/plugins/CryptoPP/src/GPGw/passdialog.h b/plugins/CryptoPP/src/GPGw/passdialog.h index b59f421b3c..0bf5b9522b 100644 --- a/plugins/CryptoPP/src/GPGw/passdialog.h +++ b/plugins/CryptoPP/src/GPGw/passdialog.h @@ -3,6 +3,6 @@ extern char dlgpassphrase[];
-BOOL CALLBACK PassphraseDialogProcedure(HWND hdlg, UINT msg, WPARAM wparam, LPARAM lparam);
+INT_PTR CALLBACK PassphraseDialogProcedure(HWND hdlg, UINT msg, WPARAM wparam, LPARAM lparam);
#endif // __PASSDIALOG_H__
diff --git a/plugins/CryptoPP/src/GPGw/userdialog.cpp b/plugins/CryptoPP/src/GPGw/userdialog.cpp index 65edcfe278..0227a5d549 100644 --- a/plugins/CryptoPP/src/GPGw/userdialog.cpp +++ b/plugins/CryptoPP/src/GPGw/userdialog.cpp @@ -3,7 +3,7 @@ void RefreshListView(HWND hLV);
-BOOL CALLBACK UserIdDialogProcedure(HWND hdlg, UINT msg, WPARAM wparam, LPARAM lparam)
+INT_PTR CALLBACK UserIdDialogProcedure(HWND hdlg, UINT msg, WPARAM wparam, LPARAM lparam)
{
static char *keyid;
HWND hLV = GetDlgItem(hdlg,IDC_KEYLIST);
diff --git a/plugins/CryptoPP/src/GPGw/userdialog.h b/plugins/CryptoPP/src/GPGw/userdialog.h index 5f49882a29..acdf0a3bcc 100644 --- a/plugins/CryptoPP/src/GPGw/userdialog.h +++ b/plugins/CryptoPP/src/GPGw/userdialog.h @@ -1,6 +1,6 @@ #ifndef __USERDIALOG_H__
#define __USERDIALOG_H__
-BOOL CALLBACK UserIdDialogProcedure(HWND hdlg, UINT msg, WPARAM wparam, LPARAM lparam);
+INT_PTR CALLBACK UserIdDialogProcedure(HWND hdlg, UINT msg, WPARAM wparam, LPARAM lparam);
#endif // __USERDIALOG_H__
|