diff options
author | George Hazan <george.hazan@gmail.com> | 2014-07-19 17:00:04 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-07-19 17:00:04 +0000 |
commit | 2bded955e286f0fcb860e0ed3a1ff3574f7db52c (patch) | |
tree | 28270f3718bf48256dc21ab952d40d6fc3c62dd7 /include | |
parent | 5b24aa5f6f969c07be09468eceb6a184f3f9fc8a (diff) |
profile manager: support for the obsolete profiles
git-svn-id: http://svn.miranda-ng.org/main/trunk@9865 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include')
-rw-r--r-- | include/m_db_int.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/include/m_db_int.h b/include/m_db_int.h index 1d2b45282a..7af19e8d95 100644 --- a/include/m_db_int.h +++ b/include/m_db_int.h @@ -155,11 +155,12 @@ interface MIDatabaseChecker */
// grokHeader() error codes
-#define EGROKPRF_NOERROR 0
-#define EGROKPRF_CANTREAD 1 // can't open the profile for reading
-#define EGROKPRF_UNKHEADER 2 // header not supported, not a supported profile
-#define EGROKPRF_VERNEWER 3 // header correct, version in profile newer than reader/writer
-#define EGROKPRF_DAMAGED 4 // header/version fine, other internal data missing, damaged.
+#define EGROKPRF_NOERROR 0
+#define EGROKPRF_CANTREAD 1 // can't open the profile for reading
+#define EGROKPRF_UNKHEADER 2 // header not supported, not a supported profile
+#define EGROKPRF_VERNEWER 3 // header correct, version in profile newer than reader/writer
+#define EGROKPRF_DAMAGED 4 // header/version fine, other internal data missing, damaged.
+#define EGROKPRF_OBSOLETE 5 // obsolete database version detected, requiring conversion
// makeDatabase() error codes
#define EMKPRF_CREATEFAILED 1 // for some reason CreateFile() didnt like something
|