ossp-pkg/rc/rc.h 1.33 -> 1.34
--- rc.h 2002/06/28 17:43:23 1.33
+++ rc.h 2002/07/01 15:03:32 1.34
@@ -62,19 +62,18 @@
RC_ERR_FNC = 8, /* Func file not found */
RC_ERR_DIR = 9, /* Location dir not found */
RC_ERR_RCF = 10, /* Rc file not found */
- RC_WRN_0 = 11, /* Warning base */
- RC_WRN_OWR = 12, /* Overwrite warning */
- RC_WRN_NUL = 13, /* NULL pointer warning */
- RC_WRN_TRM = 14 /* Request to terminate app */
+ RC_ERR_TRM = 11, /* Request to terminate app */
+ RC_WRN_0 = 12, /* Warning base */
+ RC_WRN_OWR = 13, /* Overwrite warning */
+ RC_WRN_NUL = 14 /* NULL pointer warning */
} rc_return_t;
/* Config function prototypes */
rc_return_t configNew(void);
rc_return_t configLoad(int, const char **);
+rc_return_t configInfo(void);
rc_return_t configVerify(void);
rc_return_t configDelete(void);
-const char *configSummarize(void);
-void configDebug(void); /* FIXME Remove */
/* Config accessor prototypes */
const char *configGetval(rc_opt_t);
|
|