diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-01-30 06:47:14 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-01-30 06:47:14 +0000 |
commit | 8de2f467bba5976ade5071193eed07fc7ca098ed (patch) | |
tree | 7fa15f0988e50fa949812001426286ced0ece2eb /protocols/JabberG/src/jabber.cpp | |
parent | e06676ea085e2fab7f49655ef48c7608cff307b1 (diff) |
added platform caps
git-svn-id: http://svn.miranda-ng.org/main/trunk@3351 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber.cpp')
-rw-r--r-- | protocols/JabberG/src/jabber.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber.cpp b/protocols/JabberG/src/jabber.cpp index 10525342ea..180eae9895 100644 --- a/protocols/JabberG/src/jabber.cpp +++ b/protocols/JabberG/src/jabber.cpp @@ -78,7 +78,7 @@ HANDLE hExtraMood = NULL; void JabberUserInfoInit(void);
-int bSecureIM, bMirOTR, bNewGPG;
+int bSecureIM, bMirOTR, bNewGPG, bPlatform;
/////////////////////////////////////////////////////////////////////////////
// Protocol instances
@@ -152,6 +152,11 @@ static int OnModulesLoaded(WPARAM, LPARAM) bSecureIM = (ServiceExists("SecureIM/IsContactSecured"));
bMirOTR = (int)GetModuleHandle(_T("mirotr.dll"));
bNewGPG = (int)GetModuleHandle(_T("new_gpg.dll"));
+ #ifdef WIN64
+ bPlatform = 1;
+ #else
+ bPlatform = 0;
+ #endif
// file associations manager plugin support
if (ServiceExists(MS_ASSOCMGR_ADDNEWURLTYPE)) {
|