Mercurial > trustbridge
comparison common/listutil.h @ 578:bf54c9fc0d63
Doxygen comments for list_status_t
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Tue, 27 May 2014 10:27:35 +0000 |
parents | 17e1c8f37d72 |
children | 44257ecdae6d |
comparison
equal
deleted
inserted
replaced
577:4ccae6acfaec | 578:bf54c9fc0d63 |
---|---|
21 | 21 |
22 /** | 22 /** |
23 * @brief Status of the List Operations | 23 * @brief Status of the List Operations |
24 */ | 24 */ |
25 typedef enum { | 25 typedef enum { |
26 Valid = 100, // Could be read and signature matched | 26 Valid = 100, /*! Could be read and signature matched */ |
27 UnknownError = 1, // The expected unexpected | 27 UnknownError = 1, /*! The expected unexpected */ |
28 TooLarge = 2, // Failed because the file exeeds the limit | 28 TooLarge = 2, /*! Failed because the file exeeds the limit */ |
29 InvalidFormat = 3, // File does not appear to be in list format | 29 InvalidFormat = 3, /*! File does not appear to be in list format */ |
30 InvalidSignature = 4, // Signature was invalid | 30 InvalidSignature = 4, /*! Signature was invalid */ |
31 SeekFailed = 5, // Could not seek in the file | 31 SeekFailed = 5, /*! Could not seek in the file */ |
32 ReadFailed = 6, // File exists but could not read the file | 32 ReadFailed = 6, /*! File exists but could not read the file */ |
33 IncompatibleVersion = 7, // The Format Version does not match | 33 IncompatibleVersion = 7, /*! The Format Version does not match */ |
34 NoList = 8 // No list parsed | 34 NoList = 8 /*! No list parsed */ |
35 } list_status_t; | 35 } list_status_t; |
36 | 36 |
37 /* Definitions based on the format */ | 37 /* Definitions based on the format */ |
38 #define MAX_LINE_LENGTH 9999 | 38 #define MAX_LINE_LENGTH 9999 |
39 #define MAX_LINES 1000 | 39 #define MAX_LINES 1000 |