summaryrefslogtreecommitdiff
path: root/plugins/SecureIM/src/loadlib.cpp
diff options
context:
space:
mode:
authorTobias Weimer <wishmaster51@googlemail.com>2015-04-07 19:17:54 +0000
committerTobias Weimer <wishmaster51@googlemail.com>2015-04-07 19:17:54 +0000
commitaed337ad90f145991a39b7900b8d42dc18178366 (patch)
treeca09e611f0f0fd6f6ba8c83364f548d097e3ab2e /plugins/SecureIM/src/loadlib.cpp
parentf19019ce1e932f1c773ca00e87fd64aea6e32430 (diff)
SecureIM:
- Minor Fixes git-svn-id: http://svn.miranda-ng.org/main/trunk@12661 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SecureIM/src/loadlib.cpp')
-rw-r--r--plugins/SecureIM/src/loadlib.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/plugins/SecureIM/src/loadlib.cpp b/plugins/SecureIM/src/loadlib.cpp
index 7ecb9ef0dc..ebe2fab802 100644
--- a/plugins/SecureIM/src/loadlib.cpp
+++ b/plugins/SecureIM/src/loadlib.cpp
@@ -2,11 +2,12 @@
CRYPTOPP_INFO cpp;
+HMODULE h;
BOOL loadlib(void)
{
- HMODULE h = LoadLibraryA("plugins/cryptopp.dll");
+ h = LoadLibrary(_T("plugins/cryptopp.dll"));
if (h == NULL) {
- h = LoadLibraryA("cryptopp.dll");
+ h = LoadLibrary(_T("cryptopp.dll"));
if (h == NULL) return 0;
}
@@ -72,3 +73,7 @@ BOOL loadlib(void)
return (cpp_get_version() >= 0x01000403);
}
+
+void freelib() {
+ FreeLibrary(h);
+} \ No newline at end of file