diff options
author | George Hazan <george.hazan@gmail.com> | 2023-12-29 17:03:21 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-12-29 17:03:21 +0300 |
commit | 9536e0bb47b12ea2ae01ab070dd9f6aa5bb360c2 (patch) | |
tree | a6663fa7d5aa9afcb51fe1b914e457acdcf5fa8f /include | |
parent | 28535b12d00c1ccfa98250dd2c7e87402545adba (diff) |
fixes #4085 (Удалить настройки невидимости)
Diffstat (limited to 'include')
-rw-r--r-- | include/m_protoint.h | 1 | ||||
-rw-r--r-- | include/m_protosvc.h | 16 |
2 files changed, 0 insertions, 17 deletions
diff --git a/include/m_protoint.h b/include/m_protoint.h index d075c1827d..bd40df552b 100644 --- a/include/m_protoint.h +++ b/include/m_protoint.h @@ -242,7 +242,6 @@ public: virtual HANDLE SendFile(MCONTACT hContact, const wchar_t *szDescription, wchar_t **ppszFiles);
virtual int SendMsg(MCONTACT hContact, MEVENT hReplyEvent, const char *msg);
- virtual int SetApparentMode(MCONTACT hContact, int mode);
virtual int SetStatus(int iNewStatus);
virtual HANDLE GetAwayMsg(MCONTACT hContact);
diff --git a/include/m_protosvc.h b/include/m_protosvc.h index 7c312217dc..f89a4e6cff 100644 --- a/include/m_protosvc.h +++ b/include/m_protosvc.h @@ -57,10 +57,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define PF1_MODEMSGRECV 0x00000080 // supports reading others' away messages
#define PF1_SERVERCLIST 0x00000100 // contact lists are stored on the server, not locally. See notes below
#define PF1_AUTHREQ 0x00000200 // will get authorisation requests for some or all contacts
-#define PF1_VISLIST 0x00000800 // has an invisible list
-#define PF1_INVISLIST 0x00001000 // has a visible list for when in invisible mode
-#define PF1_INDIVSTATUS 0x00002000 // supports setting different status modes to each contact
-#define PF1_EXTENSIBLE 0x00004000 // the protocol is extensible and supports plugin-defined messages
#define PF1_PEER2PEER 0x00008000 // supports direct (not server mediated) communication between clients
#define PF1_NEWUSER 0x00010000 // supports creation of new user IDs
#define PF1_CHAT 0x00020000 // has a realtime chat capability
@@ -672,18 +668,6 @@ struct PROTOFILERESUME #define PSS_FILE "/SendFile"
///////////////////////////////////////////////////////////////////////////////
-// Set the status mode you will appear in to a user
-// wParam = statusMode
-// lParam = 0
-// Returns 0 on success, nonzero on failure
-// Set statusMode = 0 to revert to normal behaviour for the contact
-// ID_STATUS_ONLINE is possible iff PF1_VISLIST
-// ID_STATUS_OFFLINE is possible iff PF1_INVISLIST
-// Other modes are possible iff PF1_INDIVSTATUS
-
-#define PSS_SETAPPARENTMODE "/SetApparentMode"
-
-///////////////////////////////////////////////////////////////////////////////
// Send an auth request
// wParam = 0
// lParam = (const wchar_t *)szMessage
|