diff options
author | pescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7> | 2010-01-30 06:05:24 +0000 |
---|---|---|
committer | pescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7> | 2010-01-30 06:05:24 +0000 |
commit | 579bf3eb524d1001d5d786d0207568b487b60ba2 (patch) | |
tree | 0e259b81ca25c56f6ffc1f5241e770abae5bab1c /Protocols/SIP/popup.h | |
parent | e9d52596afd12795a9f5533cefc783343996d686 (diff) |
sip:
+ Added info popups
+ Added SRTP option
- Remove TCP connection for protocol (everybody seems to use UDP/TLS only)
git-svn-id: http://pescuma.googlecode.com/svn/trunk/Miranda@219 c086bb3d-8645-0410-b8da-73a8550f86e7
Diffstat (limited to 'Protocols/SIP/popup.h')
-rw-r--r-- | Protocols/SIP/popup.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Protocols/SIP/popup.h b/Protocols/SIP/popup.h index 3a97b08..0ed6db2 100644 --- a/Protocols/SIP/popup.h +++ b/Protocols/SIP/popup.h @@ -41,16 +41,16 @@ void DeInitPopups(); #define POPUP_TYPE_NORMAL 0
#define POPUP_TYPE_TEST 1
#define POPUP_TYPE_ERROR 2
+#define POPUP_TYPE_INFO 3
-// Show an popup
void ShowPopup(HANDLE hContact, const TCHAR *title, const TCHAR *description);
-// Show an test
void ShowTestPopup(const TCHAR *title, const TCHAR *description, const Options *op);
-// Show an error popup
void ShowErrPopup(const TCHAR *description, const TCHAR *title = NULL);
+void ShowInfoPopup(const TCHAR *description, const TCHAR *title = NULL);
+
void ShowPopupEx(HANDLE hContact, const TCHAR *title, const TCHAR *description,
void *plugin_data, int type, const Options *op);
|