diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-06-01 19:25:20 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-06-01 19:25:20 +0000 |
commit | cd60ff3b5bf31a99c2ccafcd404adf8a0452b0a4 (patch) | |
tree | 56433c8ca56230de7e1065a13e2fdea065ba2186 /protocols/SkypeWeb/src/skype_proto.h | |
parent | 2bb514f4195c99b52e0ec748c975c0fd30dbbd25 (diff) |
SkypeWeb: Minor cleanup.
git-svn-id: http://svn.miranda-ng.org/main/trunk@13962 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/skype_proto.h')
-rw-r--r-- | protocols/SkypeWeb/src/skype_proto.h | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/protocols/SkypeWeb/src/skype_proto.h b/protocols/SkypeWeb/src/skype_proto.h index 9fa33bd75a..0a9ad9739f 100644 --- a/protocols/SkypeWeb/src/skype_proto.h +++ b/protocols/SkypeWeb/src/skype_proto.h @@ -25,15 +25,16 @@ typedef HRESULT(MarkupCallback)(IHTMLDocument3 *pHtmlDoc, BSTR &message); struct TRInfo
{
- std::string socketIo;
- std::string connId;
- std::string st;
- std::string se;
- std::string instance;
- std::string ccid;
- std::string sessId;
- std::string sig;
- std::string url;
+ std::string
+ socketIo,
+ connId,
+ st,
+ se,
+ instance,
+ ccid,
+ sessId,
+ sig,
+ url;
};
struct CSkypeProto : public PROTO < CSkypeProto >
@@ -99,7 +100,7 @@ public: ////////////////////////////////////////////
UINT_PTR m_timer;
static int CompareAccounts(const CSkypeProto *p1, const CSkypeProto *p2);
- void CSkypeProto::ProcessTimer();
+ void ProcessTimer();
static INT_PTR EventGetIcon(WPARAM wParam, LPARAM lParam);
static INT_PTR GetCallEventText(WPARAM, LPARAM lParam);
@@ -185,7 +186,7 @@ private: void OnGetTrouter(const NETLIBHTTPREQUEST *response, void *p);
void OnHealth(const NETLIBHTTPREQUEST *response);
void OnTrouterEvent(const JSONNode &body, const JSONNode &headers);
- void __cdecl CSkypeProto::TRouterThread(void*);
+ void __cdecl TRouterThread(void*);
// profile
void UpdateProfileFirstName(const JSONNode &root, MCONTACT hContact = NULL);
|