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