diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2012-10-07 17:10:29 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2012-10-07 17:10:29 +0000 |
commit | 8d42163a160b263abf709414db8b973f74b4d355 (patch) | |
tree | d44fc6a25ced661d493c5fa9f9b138680d47805b /protocols/Skype/src/skype.cpp | |
parent | ecb5d187aec965f0fc021002dbf2afab22d300e8 (diff) |
- second approach to adding/deleting contacts
git-svn-id: http://svn.miranda-ng.org/main/trunk@1806 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype.cpp')
-rw-r--r-- | protocols/Skype/src/skype.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/protocols/Skype/src/skype.cpp b/protocols/Skype/src/skype.cpp index b1b0b628f3..d156be206f 100644 --- a/protocols/Skype/src/skype.cpp +++ b/protocols/Skype/src/skype.cpp @@ -133,20 +133,20 @@ extern "C" int __declspec(dllexport) Load(void) pd.fnUninit = (pfnUninitProto)CSkypeProto::UninitSkypeProto;
CallService(MS_PROTO_REGISTERMODULE, 0, reinterpret_cast<LPARAM>(&pd));
- CallService(
- MS_UTILS_GETCOUNTRYLIST,
- (WPARAM)&CSkypeProto::countriesCount,
- (LPARAM)&CSkypeProto::countryList);
+ //CallService(
+ // MS_UTILS_GETCOUNTRYLIST,
+ // (WPARAM)&CSkypeProto::countriesCount,
+ // (LPARAM)&CSkypeProto::countryList);
CSkypeProto::InitIcons();
- CSkypeProto::InitMenus();
-
+ /*CSkypeProto::InitMenus();
+*/
return 0;
}
extern "C" int __declspec(dllexport) Unload(void)
{
- CSkypeProto::UninitMenus();
+ //CSkypeProto::UninitMenus();
CSkypeProto::UninitIcons();
g_skype->stop();
|