Changeset 3548 for trunk/kStuff/include/k/kErrors.h
- Timestamp:
- Aug 26, 2007, 12:06:53 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kStuff/include/k/kErrors.h
r3544 r3548 74 74 /** The specified file was not found. */ 75 75 #define KERR_FILE_NOT_FOUND (KERR_FILE_SYSTEM_AND_IO_BASE + 0) 76 /** End of file. */ 77 #define KERR_EOF (KERR_FILE_SYSTEM_AND_IO_BASE + 1) 76 78 /** @} */ 77 79 … … 80 82 * @{ */ 81 83 /** The base of the kDbg specific status codes. */ 82 #define KDBG_ERR_BASE (KERR_FILE_SYSTEM_AND_IO_BASE + 1)84 #define KDBG_ERR_BASE (KERR_FILE_SYSTEM_AND_IO_BASE + 2) 83 85 /** The (module) format isn't known to use. */ 84 86 #define KDBG_ERR_UNKOWN_FORMAT (KDBG_ERR_BASE + 0) … … 96 98 #define KRDR_ERR_BASE (KDBG_ERR_BASE + 4) 97 99 /** The file reader can't take more concurrent mappings. */ 98 #define KRDR_ERR_TOO_MANY_MAPPINGS (KRDR_ERR_BASE + 59) 100 #define KRDR_ERR_TOO_MANY_MAPPINGS (KRDR_ERR_BASE + 0) 101 /** The pRdr instance passed to a kRdrBuf* API isn't a buffered instance. */ 102 #define KRDR_ERR_NOT_BUFFERED_RDR (KRDR_ERR_BASE + 1) 103 /** The line is too long to fit in the buffer passed to kRdrBufLine or kRdrBufLineEx. */ 104 #define KRDR_ERR_LINE_TOO_LONG (KRDR_ERR_BASE + 2) 99 105 /** @} */ 100 106
Note:
See TracChangeset
for help on using the changeset viewer.