diff options
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
{
|