ossp-pkg/rc/rc_private.h 1.32 -> 1.33
--- rc_private.h 2003/06/13 18:33:07 1.32
+++ rc_private.h 2003/06/18 14:35:29 1.33
@@ -73,12 +73,6 @@
typedef int rc_opt_t; /* For use with RC_XXX_VAL definitions */
-/* Analyser type */
-typedef struct {
- short m_nRcs; /* How many rc files */
- char **m_pszRcs; /* Rc file names */
-} rc_anal_t;
-
/* Script type */
typedef char * rc_script_t;
@@ -89,21 +83,26 @@
char *m_szName;
char *m_szLogin;
char *m_szData;
- size_t m_Bytes;
} rc_section_t;
-/* Label type */
+/* Rcfile class */
typedef struct {
short m_nSecs;
char *m_szName;
rc_section_t **m_ppSecvec;
-} rc_label_t;
+} rc_file_t;
+
+/* List class (can be implemented as array) */
+typedef struct {
+ short m_nFiles;
+ rc_file_t **m_ppFilevec;
+} rc_list_t;
/* Processor class */
typedef struct {
- rc_anal_t *m_pAnal;
+ rc_script_t *m_pScriptfunc;
rc_script_t *m_pScriptcom;
- rc_label_t **m_ppLabvec;
+ rc_list_t *m_pList;
} rc_proc_t;
#endif /* __OSSPRC_PRIVATE_H__ */
|
|