diff options
Diffstat (limited to 'plugins/StatusManager/src')
| -rw-r--r-- | plugins/StatusManager/src/main.cpp | 4 | ||||
| -rw-r--r-- | plugins/StatusManager/src/stdafx.h | 3 | 
2 files changed, 5 insertions, 2 deletions
diff --git a/plugins/StatusManager/src/main.cpp b/plugins/StatusManager/src/main.cpp index 1cbbefba36..1e6b949f1c 100644 --- a/plugins/StatusManager/src/main.cpp +++ b/plugins/StatusManager/src/main.cpp @@ -90,7 +90,7 @@ int OnAccChanged(WPARAM wParam, LPARAM lParam)  	return 0;  } -extern "C" int __declspec(dllexport) Load(void) +int CMPlugin::Load()  {  	HookEvent(ME_SYSTEM_MODULESLOADED, OnModulesLoaded);  	HookEvent(ME_PROTO_ACCLISTCHANGED, OnAccChanged); @@ -110,7 +110,7 @@ extern "C" int __declspec(dllexport) Load(void)  /////////////////////////////////////////////////////////////////////////////////////////  // plugin's exit point -extern "C" int __declspec(dllexport) Unload(void) +int CMPlugin::Unload()  {  	if (g_KSEnabled)  		KeepStatusUnload(); diff --git a/plugins/StatusManager/src/stdafx.h b/plugins/StatusManager/src/stdafx.h index 63c6cf83ea..dbf035fe4a 100644 --- a/plugins/StatusManager/src/stdafx.h +++ b/plugins/StatusManager/src/stdafx.h @@ -31,6 +31,9 @@  struct CMPlugin : public PLUGIN<CMPlugin>  {  	CMPlugin(); + +	int Load() override; +	int Unload() override;  };  #include "commonstatus.h"  | 
