summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2021-03-23 21:39:45 +0300
committerGeorge Hazan <ghazan@miranda.im>2021-03-23 21:39:45 +0300
commit42143e9cf3719630ab370e9369764cdaac892821 (patch)
tree0a7a1fb5f81b5baca71a7a44d04eab13b37a586a /include
parent607caf0454cda589ce0b84eb8d2c8e6b5613aec0 (diff)
fixes #2771 (Implement mdbx → sqlite converter)
Diffstat (limited to 'include')
-rw-r--r--include/m_db_int.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/m_db_int.h b/include/m_db_int.h
index 71adc82826..aadd36998d 100644
--- a/include/m_db_int.h
+++ b/include/m_db_int.h
@@ -394,4 +394,12 @@ EXTERN_C MIR_APP_DLL(DATABASELINK*) GetDatabasePlugin(const char *pszDriverName)
// returns DATABASELINK* of the required plugin or nullptr on error
EXTERN_C MIR_APP_DLL(DATABASELINK*) FindDatabasePlugin(const wchar_t *ptszFileName);
+/////////////////////////////////////////////////////////////////////////////////////////
+// database upgrader
+
+namespace DB
+{
+ MIR_APP_DLL(MDatabaseCommon *) Upgrade(const wchar_t *profile);
+}
+
#endif // M_DB_INT_H__