diff options
author | George Hazan <ghazan@miranda.im> | 2018-09-23 17:27:04 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-09-23 17:27:12 +0300 |
commit | 95b66d773710bfdc4784ebac07bbb86868fdea8a (patch) | |
tree | ff053043d665086c1c97ebe331c42974eca52614 /plugins/Import/src | |
parent | e5902c3524be5c1473563521c3e6e99acdf3ec3c (diff) |
db_event_edit - new stub for editing messages
Diffstat (limited to 'plugins/Import/src')
-rw-r--r-- | plugins/Import/src/dbrw/dbevents.cpp | 5 | ||||
-rw-r--r-- | plugins/Import/src/dbrw/dbintf.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/plugins/Import/src/dbrw/dbevents.cpp b/plugins/Import/src/dbrw/dbevents.cpp index 062cc79069..d6db3c1ae2 100644 --- a/plugins/Import/src/dbrw/dbevents.cpp +++ b/plugins/Import/src/dbrw/dbevents.cpp @@ -44,6 +44,11 @@ STDMETHODIMP_(BOOL) CDbxSQLite::DeleteEvent(MCONTACT, MEVENT) return FALSE; } +BOOL CDbxSQLite::EditEvent(MCONTACT, MEVENT, DBEVENTINFO*) +{ + return 1; +} + STDMETHODIMP_(LONG) CDbxSQLite::GetBlobSize(MEVENT hDbEvent) { mir_cslock lock(m_csDbAccess); diff --git a/plugins/Import/src/dbrw/dbintf.h b/plugins/Import/src/dbrw/dbintf.h index 692316c38f..eb23330477 100644 --- a/plugins/Import/src/dbrw/dbintf.h +++ b/plugins/Import/src/dbrw/dbintf.h @@ -135,6 +135,7 @@ public: STDMETHODIMP_(LONG) GetEventCount(MCONTACT contactID) override; STDMETHODIMP_(MEVENT) AddEvent(MCONTACT contactID, DBEVENTINFO *dbe) override; STDMETHODIMP_(BOOL) DeleteEvent(MCONTACT contactID, MEVENT hDbEvent) override; + STDMETHODIMP_(BOOL) EditEvent(MCONTACT contactID, MEVENT hDbEvent, DBEVENTINFO *dbe) override; STDMETHODIMP_(LONG) GetBlobSize(MEVENT hDbEvent) override; STDMETHODIMP_(BOOL) GetEvent(MEVENT hDbEvent, DBEVENTINFO *dbe) override; STDMETHODIMP_(BOOL) MarkEventRead(MCONTACT contactID, MEVENT hDbEvent) override; |