diff options
author | George Hazan <ghazan@miranda.im> | 2017-11-10 12:26:50 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-11-10 12:26:50 +0300 |
commit | 75b344c4c8b4148602279b51bc2cc5d45b03c324 (patch) | |
tree | aac200ebcda11e62bb113db523f722bc742e3ba5 /protocols/JabberG/src/jabber_proto.h | |
parent | 79f7652b02de068a55029e3fb1010c9fc9e868e2 (diff) |
more strict version of caps reading
Diffstat (limited to 'protocols/JabberG/src/jabber_proto.h')
-rwxr-xr-x | protocols/JabberG/src/jabber_proto.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/protocols/JabberG/src/jabber_proto.h b/protocols/JabberG/src/jabber_proto.h index 963a385232..4149f80080 100755 --- a/protocols/JabberG/src/jabber_proto.h +++ b/protocols/JabberG/src/jabber_proto.h @@ -124,7 +124,6 @@ struct CJabberProto : public PROTO<CJabberProto>, public IJabberInterface int __cdecl OnOptionsInit(WPARAM, LPARAM);
int __cdecl OnPreShutdown(WPARAM, LPARAM);
int __cdecl OnPrebuildContactMenu(WPARAM, LPARAM);
- int __cdecl OnMsgUserTyping(WPARAM, LPARAM);
int __cdecl OnProcessSrmmIconClick(WPARAM, LPARAM);
int __cdecl OnProcessSrmmEvent(WPARAM, LPARAM);
int __cdecl OnReloadIcons(WPARAM, LPARAM);
@@ -592,9 +591,9 @@ struct CJabberProto : public PROTO<CJabberProto>, public IJabberInterface void GetAvatarFileName(MCONTACT hContact, wchar_t* pszDest, size_t cbLen);
void ResolveTransportNicks(const wchar_t *jid);
void SetServerStatus(int iNewStatus);
- void FormatMirVer(pResourceStatus &resource, CMStringW&);
+ void FormatMirVer(const pResourceStatus &resource, CMStringW&);
void UpdateMirVer(JABBER_LIST_ITEM *item);
- void UpdateMirVer(MCONTACT hContact, pResourceStatus &resource);
+ void UpdateMirVer(MCONTACT hContact, const pResourceStatus&);
void UpdateSubscriptionInfo(MCONTACT hContact, JABBER_LIST_ITEM *item);
void SetContactOfflineStatus(MCONTACT hContact);
void InitPopups(void);
|