ossp-pkg/rc/rc.h 1.23 -> 1.24
--- rc.h 2002/04/25 09:51:29 1.23
+++ rc.h 2002/04/25 16:17:57 1.24
@@ -56,7 +56,9 @@
} rc_return_t;
/* Rc class */
-typedef void *rc_t;
+typedef struct {
+ int nTmpfile; /* Temp file descriptor */
+} rc_t;
/* Rc script type */
typedef char *rc_script_t;
@@ -101,6 +103,16 @@
rc_return_t clioptSetrcfile(const char *);
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 *);
+
/* Option function prototypes */
/*FIXME rc_return_t optNew(rc_opt_t **);
rc_return_t optDelete(rc_opt_t **);*/
|
|