diff options
-rw-r--r-- | plugins/Db3x_mmap/src/dbheaders.cpp | 1 | ||||
-rw-r--r-- | plugins/Db3x_mmap/src/dbintf.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/plugins/Db3x_mmap/src/dbheaders.cpp b/plugins/Db3x_mmap/src/dbheaders.cpp index 5fc2b534c9..f279b98cfa 100644 --- a/plugins/Db3x_mmap/src/dbheaders.cpp +++ b/plugins/Db3x_mmap/src/dbheaders.cpp @@ -87,6 +87,7 @@ int CDb3Mmap::CheckDbHeaders() }
switch (m_dbHeader.version) {
+ case DB_094_VERSION:
case DB_095_1_VERSION:
case DB_095_VERSION:
break;
diff --git a/plugins/Db3x_mmap/src/dbintf.h b/plugins/Db3x_mmap/src/dbintf.h index b69054f87d..e0c5b43ebb 100644 --- a/plugins/Db3x_mmap/src/dbintf.h +++ b/plugins/Db3x_mmap/src/dbintf.h @@ -47,6 +47,7 @@ DBHeader #define DBMODE_SHARED 0x0001
#define DBMODE_READONLY 0x0002
+#define DB_094_VERSION 0x00000701u
#define DB_095_VERSION 0x00000800u
#define DB_095_1_VERSION 0x00000801u
|