diff options
author | mataes2007 <mataes2007@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb> | 2011-12-31 16:11:05 +0000 |
---|---|---|
committer | mataes2007 <mataes2007@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb> | 2011-12-31 16:11:05 +0000 |
commit | f39683393b0f9c31559ef05c824774541d9a19be (patch) | |
tree | 715aca7e40f104ea9839d2ec1bcbf8dfb7d017e3 /SecureIM/options.h | |
parent | 85863331bd2920991e8e7093a472e60d749b4a7a (diff) |
patch by FREAK_THEMIGHTY:
add x64 support
added context-sensitive langpacks support
git-svn-id: http://miranda-plugins.googlecode.com/svn/trunk@252 e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb
Diffstat (limited to 'SecureIM/options.h')
-rw-r--r-- | SecureIM/options.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/SecureIM/options.h b/SecureIM/options.h index 4bcfcd8..c87a0de 100644 --- a/SecureIM/options.h +++ b/SecureIM/options.h @@ -1,11 +1,11 @@ #ifndef __OPTIONS_H__
#define __OPTIONS_H__
-BOOL CALLBACK OptionsDlgProc(HWND,UINT,WPARAM,LPARAM);
-BOOL CALLBACK DlgProcOptionsGeneral(HWND,UINT,WPARAM,LPARAM);
-BOOL CALLBACK DlgProcOptionsProto(HWND,UINT,WPARAM,LPARAM);
-BOOL CALLBACK DlgProcOptionsPGP(HWND,UINT,WPARAM,LPARAM);
-BOOL CALLBACK DlgProcOptionsGPG(HWND,UINT,WPARAM,LPARAM);
+INT_PTR CALLBACK OptionsDlgProc(HWND,UINT,WPARAM,LPARAM);
+INT_PTR CALLBACK DlgProcOptionsGeneral(HWND,UINT,WPARAM,LPARAM);
+INT_PTR CALLBACK DlgProcOptionsProto(HWND,UINT,WPARAM,LPARAM);
+INT_PTR CALLBACK DlgProcOptionsPGP(HWND,UINT,WPARAM,LPARAM);
+INT_PTR CALLBACK DlgProcOptionsGPG(HWND,UINT,WPARAM,LPARAM);
BOOL CALLBACK DlgProcSetPSK(HWND,UINT,WPARAM,LPARAM);
BOOL CALLBACK DlgProcSetPassphrase(HWND,UINT,WPARAM,LPARAM);
void ApplyGeneralSettings(HWND);
|