Ignore:
Timestamp:
Aug 26, 2007, 3:13:35 AM (18 years ago)
Author:
bird
Message:

made kDbg compile again (not linking yet though).

File:
1 edited

Legend:

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

    r3548 r3550  
    8787/** The (module) format isn't supported by this kDbg build. */
    8888#define KDBG_ERR_FORMAT_NOT_SUPPORTED                   (KDBG_ERR_BASE + 1)
     89/** The (module) format isn't supported by this kDbg build. */
     90#define KDBG_ERR_BAD_EXE_FORMAT                         (KDBG_ERR_BASE + 2)
    8991/** A specified address or an address found in the debug info is invalid. */
    90 #define KDBG_ERR_INVALID_ADDRESS                        (KDBG_ERR_BASE + 2)
     92#define KDBG_ERR_INVALID_ADDRESS                        (KDBG_ERR_BASE + 3)
    9193/** The dbghelp.dll is too old or something like that. */
    92 #define KDBG_ERR_DBGHLP_VERSION_MISMATCH                (KDBG_ERR_BASE + 3)
     94#define KDBG_ERR_DBGHLP_VERSION_MISMATCH                (KDBG_ERR_BASE + 4)
    9395/** @} */
    9496
     
    9698 * @{ */
    9799/** the base of the kRdr specific status codes. */
    98 #define KRDR_ERR_BASE                                   (KDBG_ERR_BASE + 4)
     100#define KRDR_ERR_BASE                                   (KDBG_ERR_BASE + 5)
    99101/** The file reader can't take more concurrent mappings. */
    100102#define KRDR_ERR_TOO_MANY_MAPPINGS                      (KRDR_ERR_BASE + 0)
Note: See TracChangeset for help on using the changeset viewer.