diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-06 17:29:19 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-06 17:29:19 +0000 |
commit | 108d0abc52b5a37be5b07d54aa31394224f671c2 (patch) | |
tree | e87f302b0ed5affb590b64a9f402c7987b46e334 /plugins/Db3x_mmap/src/dbintf.h | |
parent | f6d53c90114069402b549aa7c0bc79044aace51d (diff) |
fix for decoding settings
git-svn-id: http://svn.miranda-ng.org/main/trunk@7523 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Db3x_mmap/src/dbintf.h')
-rw-r--r-- | plugins/Db3x_mmap/src/dbintf.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/Db3x_mmap/src/dbintf.h b/plugins/Db3x_mmap/src/dbintf.h index 3e76d9a49a..92e8a9e0b0 100644 --- a/plugins/Db3x_mmap/src/dbintf.h +++ b/plugins/Db3x_mmap/src/dbintf.h @@ -52,7 +52,8 @@ DBHeader #define WSOFS_END 0xFFFFFFFF
#define WS_ERROR 0xFFFFFFFF
-#define DBVT_ENCRYPTED 250
+#define DBVT_ENCRYPTED 250
+#define DBVT_UNENCRYPTED 251
#define NeedBytes(n) if (bytesRemaining<(n)) pBlob = (PBYTE)DBRead(ofsBlobPtr,(n),&bytesRemaining)
#define MoveAlong(n) {int x = n; pBlob += (x); ofsBlobPtr += (x); bytesRemaining -= (x);}
|