--- rc.h 2002/06/26 14:11:16 1.29
+++ rc.h 2002/06/26 14:42:53 1.30
@@ -52,16 +52,17 @@
/* Rc return codes */
typedef enum {
- RC_OK = 1, /* Success */
- RC_ERR_0 = 2, /* Error base */
- RC_ERR_USE = 3, /* Usage error */
- RC_ERR_MEM = 4, /* Memory error */
- RC_ERR_SYS = 5, /* System error (see errno) */
- RC_ERR_IO = 6, /* Input/output error */
- RC_ERR_INT = 7, /* Internal error */
- RC_WRN_0 = 8, /* Warning base */
- RC_WRN_OWR = 9, /* Overwrite warning */
- RC_WRN_NUL = 10 /* NULL pointer warning */
+ RC_OK = 1, /* Success */
+ RC_ERR_0 = 2, /* Error base */
+ RC_ERR_USE = 3, /* Usage error */
+ RC_ERR_MEM = 4, /* Memory error */
+ RC_ERR_SYS = 5, /* System error (see errno) */
+ RC_ERR_IO = 6, /* Input/output error */
+ RC_ERR_INT = 7, /* Internal error */
+ RC_WRN_0 = 8, /* Warning base */
+ RC_WRN_OWR = 9, /* Overwrite warning */
+ RC_WRN_NUL = 10, /* NULL pointer warning */
+ RC_WRN_TRM = 11 /* Request to terminate app */
} rc_return_t;
/* Config function prototypes */
|