Ignore:
Timestamp:
Aug 31, 2007, 6:09:23 AM (18 years ago)
Author:
bird
Message:

kHlp work...

File:
1 edited

Legend:

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

    r3550 r3573  
    3838 */
    3939/** The base of the general status codes. */
    40 #define KERR_GENERAL_BASE                               (KERR_BASE )
     40#define KERR_GENERAL_BASE                               (KERR_BASE)
    4141/** Generic error. */
    4242#define KERR_GENERAL_FAILURE                            (KERR_GENERAL_BASE + 1)
     
    4545/** Hit some unimplemented functionality - feel free to implement it :-) . */
    4646#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)
    4751/** @}*/
    4852
     
    5155 */
    5256/** 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)
    5458/** An API was given an invalid parameter. */
    5559#define KERR_INVALID_PARAMETER                          (KERR_INPUT_BASE + 0)
Note: See TracChangeset for help on using the changeset viewer.