diff options
author | George Hazan <george.hazan@gmail.com> | 2013-05-06 17:09:28 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-05-06 17:09:28 +0000 |
commit | adc684b43edcca8d5433339993621b26e4fdd2b5 (patch) | |
tree | 2b6720312eba123200346e81fb5626cf1d2c82c5 /protocols/Skype/src/skype_proto.h | |
parent | f94f16702b87c3c876096723f8e6ad94d63847aa (diff) |
- we display SRMM button only for Skype contacts;
- service & hooks list aren't needed for a while
git-svn-id: http://svn.miranda-ng.org/main/trunk@4594 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_proto.h')
-rw-r--r-- | protocols/Skype/src/skype_proto.h | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/protocols/Skype/src/skype_proto.h b/protocols/Skype/src/skype_proto.h index 3e008be7f6..1326eda358 100644 --- a/protocols/Skype/src/skype_proto.h +++ b/protocols/Skype/src/skype_proto.h @@ -149,6 +149,7 @@ public: int __cdecl OnPreShutdown(WPARAM, LPARAM);
int __cdecl OnContactDeleted(WPARAM, LPARAM);
int __cdecl OnOptionsInit(WPARAM, LPARAM);
+ int __cdecl OnSrmmWindowOpen(WPARAM, LPARAM);
int __cdecl OnUserInfoInit(WPARAM, LPARAM);
INT_PTR __cdecl OnAccountManagerInit(WPARAM wParam, LPARAM lParam);
@@ -171,11 +172,9 @@ public: // services
static void InitServiceList();
- static void UninitServiceList();
// hooks
static void InitHookList();
- static void UninitHookList();
INT_PTR __cdecl InviteCommand(WPARAM, LPARAM);
@@ -389,21 +388,12 @@ protected: void Log(const wchar_t *fmt, ...);
// services
- static LIST<void> serviceList;
-
- LIST<void> instanceServiceList;
void InitInstanceServiceList();
- void UninitInstanceServiceList();
// hooks
- static LIST<void> hookList;
-
- LIST<void> instanceHookList;
-
HANDLE HookEvent(const char*, SkypeEventFunc);
void InitInstanceHookList();
- void UninitInstanceHookList();
// icons
static _tag_iconList IconList[];
|