Changeset 3550 for trunk/kStuff/include/k/kErrors.h
- Timestamp:
- Aug 26, 2007, 3:13:35 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kStuff/include/k/kErrors.h
r3548 r3550 87 87 /** The (module) format isn't supported by this kDbg build. */ 88 88 #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) 89 91 /** 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) 91 93 /** 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) 93 95 /** @} */ 94 96 … … 96 98 * @{ */ 97 99 /** 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) 99 101 /** The file reader can't take more concurrent mappings. */ 100 102 #define KRDR_ERR_TOO_MANY_MAPPINGS (KRDR_ERR_BASE + 0)
Note:
See TracChangeset
for help on using the changeset viewer.