diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-05-01 07:59:22 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-05-01 07:59:22 +0000 |
commit | ec4bfdfecf461afb79c7a992d73731c193970456 (patch) | |
tree | d8f9352335bf85df95f3089f86b44bfa8e6bbdc5 /protocols/SkypeWeb/src/skype_proto.h | |
parent | ae0a384dc2d35285f4d4b907695480f09f177f40 (diff) |
SkypeWeb: Small improvements.
git-svn-id: http://svn.miranda-ng.org/main/trunk@13324 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/skype_proto.h')
-rw-r--r-- | protocols/SkypeWeb/src/skype_proto.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/protocols/SkypeWeb/src/skype_proto.h b/protocols/SkypeWeb/src/skype_proto.h index 659ee8880a..5ac4fd4974 100644 --- a/protocols/SkypeWeb/src/skype_proto.h +++ b/protocols/SkypeWeb/src/skype_proto.h @@ -20,7 +20,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. typedef void(CSkypeProto::*SkypeResponseCallback)(const NETLIBHTTPREQUEST *response);
typedef void(CSkypeProto::*SkypeResponseWithArgCallback)(const NETLIBHTTPREQUEST *response, void *arg);
-typedef HRESULT(MarkupCallback)(IHTMLDocument3 *, BSTR &message);
+
+typedef HRESULT(MarkupCallback)(IHTMLDocument3 *pHtmlDoc, BSTR &message);
struct CSkypeProto : public PROTO < CSkypeProto >
{
@@ -292,9 +293,7 @@ private: char *SelfUrlToName (const char *url);
char *GetServerFromUrl (const char *url);
- LPCTSTR ClearText(CMString &result, const TCHAR *message);
- HRESULT TestDocumentText(IHTMLDocument3 *pHtmlDoc, BSTR &message);
- HRESULT TestMarkupServices(BSTR bstrHtml, MarkupCallback *pCallback, BSTR &message);
+ LPCTSTR ClearText(CMString &value, const TCHAR *message);
//services
INT_PTR __cdecl OnIncomingCallCLE (WPARAM wParam, LPARAM lParam);
@@ -316,4 +315,7 @@ private: }
};
+HRESULT TestDocumentText(IHTMLDocument3 *pHtmlDoc, BSTR &message);
+HRESULT TestMarkupServices(BSTR bstrHtml, MarkupCallback *pCallback, BSTR &message);
+
#endif //_SKYPE_PROTO_H_
\ No newline at end of file |