diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-04-30 18:03:20 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-04-30 18:03:20 +0000 |
commit | 3a6ef3d8eebca078ff3eb424d56d483d256f4567 (patch) | |
tree | 548891344b1fd79af60fefdf850f1cdb4c9fbe0a /protocols/SkypeWeb/src/skype_proto.h | |
parent | bf0b0f7a36ba4c55c014cdd0ee8e0827f6691692 (diff) |
SkypeWeb: Popup on incoming call.
git-svn-id: http://svn.miranda-ng.org/main/trunk@13296 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/skype_proto.h')
-rw-r--r-- | protocols/SkypeWeb/src/skype_proto.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/protocols/SkypeWeb/src/skype_proto.h b/protocols/SkypeWeb/src/skype_proto.h index 0a942bcf06..bc5ac7bafc 100644 --- a/protocols/SkypeWeb/src/skype_proto.h +++ b/protocols/SkypeWeb/src/skype_proto.h @@ -279,9 +279,11 @@ private: char *MirandaToSkypeStatus(int status);
static void ShowNotification(const TCHAR *message, int flags = 0, MCONTACT hContact = NULL);
- static void ShowNotification(const TCHAR *caption, const TCHAR *message, int flags = 0, MCONTACT hContact = NULL);
+ static void ShowNotification(const TCHAR *caption, const TCHAR *message, int flags = 0, MCONTACT hContact = NULL, int type = 0);
static bool IsFileExists(std::tstring path);
+ static LRESULT CALLBACK PopupDlgProcCall(HWND hPopup, UINT uMsg, WPARAM wParam, LPARAM lParam);
+
char *ParseUrl(const char *url, const char *token);
char *ChatUrlToName (const char *url);
@@ -290,7 +292,8 @@ private: char *GetServerFromUrl (const char *url);
//services
- INT_PTR __cdecl OnIncomingCall (WPARAM wParam, LPARAM lParam);
+ INT_PTR __cdecl OnIncomingCallCLE (WPARAM wParam, LPARAM lParam);
+ INT_PTR __cdecl OnIncomingCallPP (WPARAM wParam, LPARAM lParam);
INT_PTR __cdecl BlockContact (WPARAM hContact, LPARAM);
INT_PTR __cdecl UnblockContact (WPARAM hContact, LPARAM);
INT_PTR __cdecl OnRequestAuth (WPARAM hContact, LPARAM lParam);
|