diff options
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);
|