diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-04-30 18:47:31 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-04-30 18:47:31 +0000 |
commit | 5f7961a471c1027e32297099de33769a4247a60d (patch) | |
tree | 8d061778a6232667836830ace219ddc034eb002e /protocols/SkypeWeb/src/skype_proto.h | |
parent | 15d4346a1e3ada4bd14739b63fc239109dc96a0c (diff) |
git-svn-id: http://svn.miranda-ng.org/main/trunk@13301 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/skype_proto.h')
-rw-r--r-- | protocols/SkypeWeb/src/skype_proto.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/protocols/SkypeWeb/src/skype_proto.h b/protocols/SkypeWeb/src/skype_proto.h index bc5ac7bafc..659ee8880a 100644 --- a/protocols/SkypeWeb/src/skype_proto.h +++ b/protocols/SkypeWeb/src/skype_proto.h @@ -20,6 +20,7 @@ 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);
struct CSkypeProto : public PROTO < CSkypeProto >
{
@@ -291,6 +292,10 @@ 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);
+
//services
INT_PTR __cdecl OnIncomingCallCLE (WPARAM wParam, LPARAM lParam);
INT_PTR __cdecl OnIncomingCallPP (WPARAM wParam, LPARAM lParam);
|