ossp-pkg/rc/rc.h 1.24 -> 1.25
--- rc.h 2002/04/25 16:17:57 1.24
+++ rc.h 2002/05/13 16:57:00 1.25
@@ -55,10 +55,10 @@
RC_ERR_INT /* Internal error */
} rc_return_t;
-/* Rc class */
+/* Processor class */
typedef struct {
int nTmpfile; /* Temp file descriptor */
-} rc_t;
+} rc_proc_t;
/* Rc script type */
typedef char *rc_script_t;
@@ -104,14 +104,14 @@
rc_return_t clioptSetsec(const char **);
/* Processor function prototypes */
-rc_t *procNew(void);
-rc_return_t procDelete(rc_t *);
-rc_return_t procReadfuncs(rc_t *, char *);
-rc_return_t procReadtmp(rc_t *, char *);
-rc_return_t procReadrc(rc_t *, char *);
-rc_return_t procSection(rc_t *, char *);
-rc_return_t procParse(rc_t *);
-rc_return_t procRun(rc_t *);
+rc_proc_t *procNew(void);
+rc_return_t procDelete(rc_proc_t *);
+rc_return_t procReadfuncs(rc_proc_t *, const char *);
+rc_return_t procReadtmp(rc_proc_t *, const char *);
+rc_return_t procReadrc(rc_proc_t *, const char *);
+rc_return_t procSection(rc_proc_t *, const char *);
+rc_return_t procParse(rc_proc_t *);
+rc_return_t procRun(rc_proc_t *);
/* Option function prototypes */
/*FIXME rc_return_t optNew(rc_opt_t **);
|
|