diff options
author | George Hazan <ghazan@miranda.im> | 2019-01-18 18:53:33 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-01-18 18:53:33 +0300 |
commit | 726069ec50be8be30e8465c1328b178a2573fd75 (patch) | |
tree | d155865e83f7b205aa5045b812e75bee75685671 /include | |
parent | a28acd3195e07adbf12495a1b50a5c0b2c2dfbbd (diff) |
PSS_URL removed as totally obsolete
Diffstat (limited to 'include')
-rw-r--r-- | include/m_protoint.h | 1 | ||||
-rw-r--r-- | include/m_protosvc.h | 15 |
2 files changed, 0 insertions, 16 deletions
diff --git a/include/m_protoint.h b/include/m_protoint.h index d2d009a9f5..b7957f46f1 100644 --- a/include/m_protoint.h +++ b/include/m_protoint.h @@ -208,7 +208,6 @@ public: virtual int SendContacts(MCONTACT hContact, int flags, int nContacts, MCONTACT *hContactsList);
virtual HANDLE SendFile(MCONTACT hContact, const wchar_t *szDescription, wchar_t **ppszFiles);
virtual int SendMsg(MCONTACT hContact, int flags, const char *msg);
- virtual int SendUrl(MCONTACT hContact, int flags, const char *url);
virtual int SetApparentMode(MCONTACT hContact, int mode);
virtual int SetStatus(int iNewStatus);
diff --git a/include/m_protosvc.h b/include/m_protosvc.h index 6aabeffeea..d6a44e7c85 100644 --- a/include/m_protosvc.h +++ b/include/m_protosvc.h @@ -606,21 +606,6 @@ struct PROTOFILERESUME #define PSS_MESSAGE "/SendMsg"
///////////////////////////////////////////////////////////////////////////////
-// Send an URL message
-// wParam = flags
-// lParam = (LPARAM)(const char*)szMessage
-// returns a hProcess corresponding to the one in the ack event.
-// szMessage should be encoded as the URL followed by the description, the
-// separator being a single nul (\0). If there is no description, do not forget
-// to end the URL with two nuls.
-// Will send an ack when the message actually gets sent
-// type = ACKTYPE_URL, result = success/failure, (char*)lParam = error message or NULL.
-// Protocols modules are free to define flags starting at 0x10000
-// The event will *not* be added to the database automatically.
-
-#define PSS_URL "/SendUrl"
-
-///////////////////////////////////////////////////////////////////////////////
// Send a set of contacts
// wParam = MAKEWPARAM(flags, nContacts)
// lParam = (LPARAM)(HANDLE*)hContactsList
|