diff options
Diffstat (limited to 'plugins/CryptoPP')
-rw-r--r-- | plugins/CryptoPP/commonheaders.h | 2 | ||||
-rw-r--r-- | plugins/CryptoPP/main.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/CryptoPP/commonheaders.h b/plugins/CryptoPP/commonheaders.h index a7ac221f5e..d42577d7bc 100644 --- a/plugins/CryptoPP/commonheaders.h +++ b/plugins/CryptoPP/commonheaders.h @@ -103,7 +103,7 @@ PBYTE cpp_alloc_pdata(pCNTX); extern "C" {
- DLLEXPORT int Load(PLUGINLINK *);
+ DLLEXPORT int Load();
DLLEXPORT PLUGININFOEX *MirandaPluginInfoEx(DWORD);
DLLEXPORT int Unload();
diff --git a/plugins/CryptoPP/main.cpp b/plugins/CryptoPP/main.cpp index b5fcf6ad01..a5613db216 100644 --- a/plugins/CryptoPP/main.cpp +++ b/plugins/CryptoPP/main.cpp @@ -44,7 +44,7 @@ int onModulesLoaded(WPARAM wParam,LPARAM lParam) return 0;
}
-int Load(PLUGINLINK *link)
+int Load()
{
DisableThreadLibraryCalls(g_hInst);
|