diff options
author | George Hazan <george.hazan@gmail.com> | 2012-08-03 19:44:57 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-08-03 19:44:57 +0000 |
commit | 50eb80e6116dda8fb97da91146092328d0950622 (patch) | |
tree | e88d09c8a73fa12dc990bb6bb4fac89388cfa8b9 /plugins/SecureIM | |
parent | 85b303dbbb3adf8bd060985ff3e0e5956e8a5cb9 (diff) |
removed the Unicode core verification
git-svn-id: http://svn.miranda-ng.org/main/trunk@1342 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SecureIM')
-rw-r--r-- | plugins/SecureIM/src/main.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/plugins/SecureIM/src/main.cpp b/plugins/SecureIM/src/main.cpp index 205a025ffe..f867591b3b 100644 --- a/plugins/SecureIM/src/main.cpp +++ b/plugins/SecureIM/src/main.cpp @@ -114,11 +114,7 @@ extern "C" __declspec(dllexport) int __cdecl Load(void) if (bIsComCtl6) iBmpDepth = ILC_COLOR32 | ILC_MASK; // 32-bit images are supported
else iBmpDepth = ILC_COLOR24 | ILC_MASK;
-// iBmpDepth = ILC_COLOR32 | ILC_MASK;
-
- char version[512];
- CallService(MS_SYSTEM_GETVERSIONTEXT, sizeof(version), (LPARAM)&version);
- bCoreUnicode = strstr(version, "Unicode")!=0;
+ bCoreUnicode = true;
iCoreVersion = CallService(MS_SYSTEM_GETVERSION,0,0);
// load crypo++ dll
|