diff options
Diffstat (limited to 'MySpace/MySpace.cpp')
-rw-r--r-- | MySpace/MySpace.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MySpace/MySpace.cpp b/MySpace/MySpace.cpp index 4da6231..921d616 100644 --- a/MySpace/MySpace.cpp +++ b/MySpace/MySpace.cpp @@ -8,6 +8,7 @@ #include "menu.h"
#include "arc4.h"
#include "notifications.h"
+#include "srmm_icon.h"
///////////////////////////////////////////////
// Common Plugin Stuff
@@ -89,6 +90,7 @@ int ModulesLoaded(WPARAM wParam, LPARAM lParam) { InitNetlib();
InitMenu();
InitNotifications();
+ InitSRMMIcon();
return 0;
}
@@ -158,6 +160,7 @@ extern "C" __declspec (dllexport) int Load(PLUGINLINK *link) { extern "C" __declspec (dllexport) int Unload(void) {
UnhookEvent(hModulesLoaded);
+ DeinitSRMMIcon();
DeinitMenu();
DeinitNetlib();
DeinitProto();
|