diff options
author | George Hazan <ghazan@miranda.im> | 2018-09-23 18:50:35 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-09-23 18:50:42 +0300 |
commit | 0fcdde09a8e85689d9cfc0764a9015d5d352ff82 (patch) | |
tree | 6afe02302b39b157d4d208a84b27b88a7fb265d8 /plugins/Dbx_mdbx/src/dbintf.h | |
parent | 3bbcf20aa8db080ef1da99e21ef554e8069bff7a (diff) |
new event: ME_DB_EVENT_EDITED
Diffstat (limited to 'plugins/Dbx_mdbx/src/dbintf.h')
-rw-r--r-- | plugins/Dbx_mdbx/src/dbintf.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/Dbx_mdbx/src/dbintf.h b/plugins/Dbx_mdbx/src/dbintf.h index 8f1b6ab24b..c250d8cdec 100644 --- a/plugins/Dbx_mdbx/src/dbintf.h +++ b/plugins/Dbx_mdbx/src/dbintf.h @@ -150,6 +150,7 @@ class CDbxMDBX : public MDatabaseCommon, public MZeroedObject return res;
}
+ bool EditEvent(MCONTACT contactID, MEVENT hDbEvent, DBEVENTINFO *dbe, bool bNew);
void FillContacts(void);
int PrepareCheck(void);
void TouchFile(void);
@@ -197,7 +198,7 @@ class CDbxMDBX : public MDatabaseCommon, public MZeroedObject MDBX_cursor *m_curEvents, *m_curEventsSort, *m_curEventIds;
MEVENT m_dwMaxEventId;
- HANDLE hEventAddedEvent, hEventDeletedEvent, hEventFilterAddedEvent;
+ HANDLE hEventAddedEvent, hEventEditedEvent, hEventDeletedEvent, hEventFilterAddedEvent;
void FindNextUnread(const txn_ptr &_txn, DBCachedContact *cc, DBEventSortingKey &key2);
|