diff options
Diffstat (limited to 'include/m_db_int.h')
-rw-r--r-- | include/m_db_int.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/m_db_int.h b/include/m_db_int.h index 198f21a030..71adc82826 100644 --- a/include/m_db_int.h +++ b/include/m_db_int.h @@ -155,11 +155,11 @@ interface MIR_APP_EXPORT MIDatabase STDMETHOD_(BOOL, Compact)(void) PURE;
STDMETHOD_(BOOL, Backup)(LPCWSTR) PURE;
-
+ STDMETHOD_(BOOL, Flush)(void) PURE;
+
STDMETHOD_(MIDatabaseChecker*, GetChecker)(void) PURE;
STDMETHOD_(DATABASELINK*, GetDriver)(void) PURE;
-
STDMETHOD_(MEVENT, GetEventById)(LPCSTR szModule, LPCSTR szId) PURE;
STDMETHOD_(DB::EventCursor*, EventCursor)(MCONTACT hContact, MEVENT hDbEvent) PURE;
@@ -228,6 +228,7 @@ public: STDMETHODIMP_(BOOL) Compact(void) override;
STDMETHODIMP_(BOOL) Backup(LPCWSTR) override;
+ STDMETHODIMP_(BOOL) Flush(void) override;
STDMETHODIMP_(MIDatabaseChecker*) GetChecker(void) override;
|