diff options
author | George Hazan <george.hazan@gmail.com> | 2012-12-23 18:52:25 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-12-23 18:52:25 +0000 |
commit | 4b283b1cf3004aebbb1f4807456a2cd0fdb5f30c (patch) | |
tree | 00ee44be29c5ac306109eb2cd9d1fc7047644b3f /protocols/JabberG/src/jabber_proto.h | |
parent | af8c5b336e9609ed9c53b877dd7f57fb3d7194b9 (diff) |
- XEP-0136 support (server-side message history);
- code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@2816 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber_proto.h')
-rw-r--r-- | protocols/JabberG/src/jabber_proto.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/protocols/JabberG/src/jabber_proto.h b/protocols/JabberG/src/jabber_proto.h index 96fd2665c4..7b0970ef86 100644 --- a/protocols/JabberG/src/jabber_proto.h +++ b/protocols/JabberG/src/jabber_proto.h @@ -397,6 +397,14 @@ struct CJabberProto : public PROTO_INTERFACE, public MZeroedObject void ContactMenuAdhocCommands(struct CJabberAdhocStartupParams* param);
+ //---- jabber_archive.c --------------------------------------------------------------
+
+ void EnableArchive(bool bEnable);
+ void RetrieveMessageArchive(HANDLE hContact, JABBER_LIST_ITEM *pItem);
+
+ void OnIqResultGetCollection(HXML iqNode);
+ void OnIqResultGetCollectionList(HXML iqNode);
+
//---- jabber_bookmarks.c ------------------------------------------------------------
INT_PTR __cdecl OnMenuHandleBookmarks(WPARAM wParam, LPARAM lParam);
@@ -893,6 +901,7 @@ struct CJabberProto : public PROTO_INTERFACE, public MZeroedObject //---- jabber_util.c -----------------------------------------------------------------
+ JABBER_LIST_ITEM* GetItemFromContact(HANDLE hContact);
JABBER_RESOURCE_STATUS* ResourceInfoFromJID(const TCHAR *jid);
void SerialInit(void);
|