diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-07-11 07:54:06 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-07-11 07:54:06 +0000 |
commit | 801768c22a7643afad2f334b5fecead14645ab78 (patch) | |
tree | e8728a438a9ed4d8ff8d027a7c0e2492cf35329f /MySpace/MySpace.cpp | |
parent | 01a664406e36abb810364237fda24e204265d7b4 (diff) |
added myim: link support
added main menu item to add myspace friends to contact list
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@277 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'MySpace/MySpace.cpp')
-rw-r--r-- | MySpace/MySpace.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MySpace/MySpace.cpp b/MySpace/MySpace.cpp index ec43337..c259305 100644 --- a/MySpace/MySpace.cpp +++ b/MySpace/MySpace.cpp @@ -9,6 +9,7 @@ #include "arc4.h"
#include "notifications.h"
#include "srmm_icon.h"
+#include "links.h"
///////////////////////////////////////////////
// Common Plugin Stuff
@@ -159,6 +160,8 @@ extern "C" __declspec (dllexport) int Load(PLUGINLINK *link) { SetAllOffline();
+ myspace_links_init();
+
// hook modules loaded
hModulesLoaded = HookEvent(ME_SYSTEM_MODULESLOADED, ModulesLoaded);
return 0;
@@ -170,6 +173,8 @@ extern "C" __declspec (dllexport) int Unload(void) { DeinitMenu();
DeinitNetlib();
DeinitProto();
+
+ myspace_links_destroy();
DeinitOptions();
DeinitNotifications();
DeinitARC4Module();
|