diff options
author | George Hazan <ghazan@miranda.im> | 2020-08-07 16:36:11 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-08-07 16:36:11 +0300 |
commit | 48932c71fe42c09d92adbaa5d0ffec1a17c06ea3 (patch) | |
tree | b750ee97c69e2447773c2fde95464b63346d2d6b /include | |
parent | 58cb6e6f41c9773b96e1cf9f0cce58c4078b3b46 (diff) |
database verification added to profile manager
Diffstat (limited to 'include')
-rw-r--r-- | include/m_db_int.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/m_db_int.h b/include/m_db_int.h index 1ce03e2342..925fd3d49b 100644 --- a/include/m_db_int.h +++ b/include/m_db_int.h @@ -280,8 +280,10 @@ public: // makeDatabase() error codes
#define EMKPRF_CREATEFAILED 1 // for some reason CreateFile() didnt like something
-#define MDB_CAPS_COMPACT 0x0001 // database can be compacted
-#define MDB_CAPS_CREATE 0x0002 // new database can be created
+#define MDB_CAPS_CREATE 0x0001 // new database can be created
+#define MDB_CAPS_COMPACT 0x0002 // database can be compacted
+#define MDB_CAPS_CHECK 0x0004 // database can be checked
+
struct DATABASELINK
{
|