diff options
Diffstat (limited to 'plugins/ShellExt/src/main.cpp')
-rw-r--r-- | plugins/ShellExt/src/main.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/plugins/ShellExt/src/main.cpp b/plugins/ShellExt/src/main.cpp index 3d83de1b99..74841af390 100644 --- a/plugins/ShellExt/src/main.cpp +++ b/plugins/ShellExt/src/main.cpp @@ -151,7 +151,7 @@ STDAPI DllUnregisterServer() /////////////////////////////////////////////////////////////////////////////////////////
-extern "C" __declspec(dllexport) int Load(void)
+int CMPlugin::Load()
{
InvokeThreadServer();
HookEvent(ME_OPT_INITIALISE, OnOptionsInit);
@@ -159,8 +159,3 @@ extern "C" __declspec(dllexport) int Load(void) CheckRegisterServer();
return 0;
}
-
-extern "C" __declspec(dllexport) int Unload(void)
-{
- return 0;
-}
|