summaryrefslogtreecommitdiff
path: root/protocols/Twitter
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2012-07-13 21:37:56 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2012-07-13 21:37:56 +0000
commit92a701741ab376c6bd8ac20f832f55e55324abdc (patch)
treeaae30addc202f556781d3c86706a1fdef4fa953b /protocols/Twitter
parent9f1350bd4fb0df56a4115e80343285eef8acb954 (diff)
Updater removal - stage 1
git-svn-id: http://svn.miranda-ng.org/main/trunk@956 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Twitter')
-rw-r--r--protocols/Twitter/main.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/protocols/Twitter/main.cpp b/protocols/Twitter/main.cpp
index 5ac2aaa24c..4e595f8085 100644
--- a/protocols/Twitter/main.cpp
+++ b/protocols/Twitter/main.cpp
@@ -89,28 +89,6 @@ static int protoUninit(PROTO_INTERFACE *proto)
return 0;
}
-int OnModulesLoaded(WPARAM,LPARAM)
-{
- if(ServiceExists(MS_UPDATE_REGISTER)) {
- Update upd = {sizeof(upd)};
- char curr_version[30];
-
- upd.szComponentName = pluginInfo.shortName;
- upd.szUpdateURL = UPDATER_AUTOREGISTER;
- upd.szBetaVersionURL = "http://twosx.net/mim/twitter/updater/version.html";
- upd.szBetaChangelogURL = "http://twosx.net/mim/twitter/updater/changelog.html";
- upd.pbBetaVersionPrefix = reinterpret_cast<BYTE*>("Twitter ");
- upd.cpbBetaVersionPrefix = (int)strlen(reinterpret_cast<char*>(upd.pbBetaVersionPrefix));
- upd.szBetaUpdateURL = "http://twosx.net/mim/twitter/updater/twitter.zip";
-
- upd.pbVersion = reinterpret_cast<BYTE*>( CreateVersionStringPluginEx(&pluginInfo,curr_version));
- upd.cpbVersion = (int)strlen(reinterpret_cast<char*>(upd.pbVersion));
- CallService(MS_UPDATE_REGISTER,0,(LPARAM)&upd);
- }
-
- return 0;
-}
-
static HANDLE g_hEvents[1];
extern "C" int __declspec(dllexport) Load(void)
@@ -128,8 +106,6 @@ extern "C" int __declspec(dllexport) Load(void)
pd.fnUninit = protoUninit;
CallService(MS_PROTO_REGISTERMODULE,0,reinterpret_cast<LPARAM>(&pd));
- g_hEvents[0] = HookEvent(ME_SYSTEM_MODULESLOADED,OnModulesLoaded);
-
InitIcons();
InitContactMenus();