summaryrefslogtreecommitdiff
path: root/protocols/SkypeWeb/src/skype_proto.h
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2017-10-31 13:13:13 +0300
committerGeorge Hazan <ghazan@miranda.im>2017-10-31 13:13:13 +0300
commit9437834f8f4d3abf32a8629747385d666c652084 (patch)
tree3756bbc3e4648bf539ab78a891697f9a4e89690f /protocols/SkypeWeb/src/skype_proto.h
parentce8b02d7c3df822605392d3e8e6f817953af0864 (diff)
fixes #1011 (thread-unsafe code in SkypeWeb)
Diffstat (limited to 'protocols/SkypeWeb/src/skype_proto.h')
-rw-r--r--protocols/SkypeWeb/src/skype_proto.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/protocols/SkypeWeb/src/skype_proto.h b/protocols/SkypeWeb/src/skype_proto.h
index a767f571f1..cc70467445 100644
--- a/protocols/SkypeWeb/src/skype_proto.h
+++ b/protocols/SkypeWeb/src/skype_proto.h
@@ -25,8 +25,6 @@ struct CSkypeProto : public PROTO < CSkypeProto >
{
friend CSkypeOptionsMain;
friend CSkypeGCCreateDlg;
- //friend CSkypeChatroom;
- //friend ChatUser;
public:
@@ -77,7 +75,7 @@ public:
// events
static int OnModulesLoaded(WPARAM, LPARAM);
int __cdecl OnDbEventRead(WPARAM, LPARAM);
- int __cdecl OnPreShutdown(WPARAM, LPARAM);
+ int __cdecl OnExit();
//search
void __cdecl SearchBasicThread(void* id);
@@ -362,7 +360,7 @@ private:
//polling
void __cdecl PollingThread (void*);
- void __cdecl ParsePollData (void *pData);
+ void __cdecl ParsePollData (const char*);
void ProcessEndpointPresence (const JSONNode &node);
void ProcessUserPresence (const JSONNode &node);
void ProcessNewMessage (const JSONNode &node);