Changeset 3573 for trunk/kStuff/include/k/kErrors.h
- Timestamp:
- Aug 31, 2007, 6:09:23 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kStuff/include/k/kErrors.h
r3550 r3573 38 38 */ 39 39 /** The base of the general status codes. */ 40 #define KERR_GENERAL_BASE (KERR_BASE 40 #define KERR_GENERAL_BASE (KERR_BASE) 41 41 /** Generic error. */ 42 42 #define KERR_GENERAL_FAILURE (KERR_GENERAL_BASE + 1) … … 45 45 /** Hit some unimplemented functionality - feel free to implement it :-) . */ 46 46 #define KERR_NOT_IMPLEMENTED (KERR_GENERAL_BASE + 3) 47 /** An environment variable wasn't found. */ 48 #define KERR_ENVVAR_NOT_FOUND (KERR_GENERAL_BASE + 4) 49 /** Buffer overflow. */ 50 #define KERR_BUFFER_OVERFLOW (KERR_GENERAL_BASE + 5) 47 51 /** @}*/ 48 52 … … 51 55 */ 52 56 /** The base of the input validation status codes. */ 53 #define KERR_INPUT_BASE (KERR_GENERAL_BASE + 4)57 #define KERR_INPUT_BASE (KERR_GENERAL_BASE + 6) 54 58 /** An API was given an invalid parameter. */ 55 59 #define KERR_INVALID_PARAMETER (KERR_INPUT_BASE + 0)
Note:
See TracChangeset
for help on using the changeset viewer.