Ignore:
Timestamp:
Aug 26, 2007, 12:06:53 AM (18 years ago)
Author:
bird
Message:

kRdrBuf - a buffered kRdr wrapper.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kStuff/include/k/kErrors.h

    r3544 r3548  
    7474/** The specified file was not found. */
    7575#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)
    7678/** @} */
    7779
     
    8082 * @{ */
    8183/** 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)
    8385/** The (module) format isn't known to use. */
    8486#define KDBG_ERR_UNKOWN_FORMAT                          (KDBG_ERR_BASE + 0)
     
    9698#define KRDR_ERR_BASE                                   (KDBG_ERR_BASE + 4)
    9799/** 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)
    99105/** @} */
    100106
Note: See TracChangeset for help on using the changeset viewer.