diff options
author | George Hazan <george.hazan@gmail.com> | 2013-06-11 17:48:18 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-06-11 17:48:18 +0000 |
commit | 2fbe1d2262383b272ef887d712f308f787cf33f1 (patch) | |
tree | 772a78df1caf0be843d8778344e02ac750ba7a03 /plugins/CryptoPP/src/main.cpp | |
parent | 48fc03aa394f4506c6053323386c040fede13a29 (diff) |
64-bit compatible version of CryptoPP
git-svn-id: http://svn.miranda-ng.org/main/trunk@4917 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/CryptoPP/src/main.cpp')
-rw-r--r-- | plugins/CryptoPP/src/main.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/plugins/CryptoPP/src/main.cpp b/plugins/CryptoPP/src/main.cpp index dacdfda235..ae447897f6 100644 --- a/plugins/CryptoPP/src/main.cpp +++ b/plugins/CryptoPP/src/main.cpp @@ -11,10 +11,6 @@ HANDLE hRSA4096 = NULL; CRITICAL_SECTION localQueueMutex;
CRITICAL_SECTION localContextMutex;
-char TEMP[MAX_PATH];
-int TEMP_SIZE = 0;
-BOOL isVista = 0;
-
PLUGININFOEX pluginInfoEx = {
sizeof(PLUGININFOEX),
__PLUGIN_NAME,
@@ -33,11 +29,6 @@ BOOL WINAPI DllMain(HINSTANCE hInst, DWORD dwReason, LPVOID) {
if (dwReason == DLL_PROCESS_ATTACH) {
g_hInst = hInst;
- #ifdef _DEBUG
- isVista = 1;
- #else
- isVista = ( (DWORD)(LOBYTE(LOWORD(GetVersion()))) == 6 );
- #endif
InitializeCriticalSection(&localQueueMutex);
InitializeCriticalSection(&localContextMutex);
}
|