Changeset 2945
- Timestamp:
- Jan 14, 2007, 8:17:35 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kLdr/kLdr.h
r2944 r2945 1127 1127 #define KLDR_ERR_BUFFER_OVERFLOW (KLDR_ERR_BASE + 45) 1128 1128 /** The specified ARCH+CPU isn't compatible with image. */ 1129 #define KLDR_ERR_ARCH_CPU_NOT_COMPATIBLE (KLDR_ERR_BASE + 4 5)1129 #define KLDR_ERR_ARCH_CPU_NOT_COMPATIBLE (KLDR_ERR_BASE + 46) 1130 1130 /** Symbol not found. */ 1131 #define KLDR_ERR_SYMBOL_NOT_FOUND (KLDR_ERR_BASE + 4 6)1131 #define KLDR_ERR_SYMBOL_NOT_FOUND (KLDR_ERR_BASE + 47) 1132 1132 /** A forward symbol was encountered but the caller didn't provide any means to resolve it. */ 1133 #define KLDR_ERR_FORWARDER_SYMBOL (KLDR_ERR_BASE + 4 7)1133 #define KLDR_ERR_FORWARDER_SYMBOL (KLDR_ERR_BASE + 48) 1134 1134 /** Encountered a bad fixup. */ 1135 #define KLDR_ERR_BAD_FIXUP (KLDR_ERR_BASE + 4 8)1135 #define KLDR_ERR_BAD_FIXUP (KLDR_ERR_BASE + 49) 1136 1136 /** A memory allocation failed. */ 1137 #define KLDR_ERR_NO_MEMORY (KLDR_ERR_BASE + 49)1137 #define KLDR_ERR_NO_MEMORY (KLDR_ERR_BASE + 50) 1138 1138 /** The import ordinal was out of bounds. */ 1139 #define KLDR_ERR_IMPORT_ORDINAL_OUT_OF_BOUNDS (KLDR_ERR_BASE + 5 0)1139 #define KLDR_ERR_IMPORT_ORDINAL_OUT_OF_BOUNDS (KLDR_ERR_BASE + 51) 1140 1140 /** A forwarder chain was too long. */ 1141 #define KLDR_ERR_TOO_LONG_FORWARDER_CHAIN (KLDR_ERR_BASE + 5 1)1141 #define KLDR_ERR_TOO_LONG_FORWARDER_CHAIN (KLDR_ERR_BASE + 52) 1142 1142 /** The module has no debug info. */ 1143 #define KLDR_ERR_NO_DEBUG_INFO (KLDR_ERR_BASE + 5 2)1143 #define KLDR_ERR_NO_DEBUG_INFO (KLDR_ERR_BASE + 53) 1144 1144 /** The module is already mapped. 1145 1145 * kLdrModMap() can only be called once (without kLdrModUnmap() in between). */ 1146 #define KLDR_ERR_ALREADY_MAPPED (KLDR_ERR_BASE + 5 3)1146 #define KLDR_ERR_ALREADY_MAPPED (KLDR_ERR_BASE + 54) 1147 1147 /** The module was not mapped. 1148 1148 * kLdrModUnmap() should not called without being preceeded by a kLdrModMap(). */ 1149 #define KLDR_ERR_NOT_MAPPED (KLDR_ERR_BASE + 5 4)1149 #define KLDR_ERR_NOT_MAPPED (KLDR_ERR_BASE + 55) 1150 1150 /** Couldn't fit the address value into the field. Typically a relocation kind of error. */ 1151 #define KLDR_ERR_ADDRESS_OVERFLOW (KLDR_ERR_BASE + 5 5)1151 #define KLDR_ERR_ADDRESS_OVERFLOW (KLDR_ERR_BASE + 56) 1152 1152 /** Thread attach failed. */ 1153 1153 #define KLDR_ERR_THREAD_ATTACH_FAILED (KLDR_ERR_BASE + 57)
Note:
See TracChangeset
for help on using the changeset viewer.