ossp-pkg/rc/rc_private.h 1.11 -> 1.12
--- rc_private.h 2002/04/12 19:15:12 1.11
+++ rc_private.h 2002/05/22 13:29:40 1.12
@@ -64,4 +64,24 @@
typedef int rc_opt_t; /* For use with RC_XXX_VAL definitions */
+/* Analyser type */
+typedef struct {
+ char *m_szRcs; /* Rc file names */
+ char *m_szTmp; /* Temp file name */
+ char *m_szFuncs; /* Function file names */
+ char *m_szLocs; /* Location path names */
+ char *m_szSecs; /* Section names */
+} rc_anal_t;
+
+/* Script type */
+typedef struct {
+ rc_anal_t *m_pAnal;
+ char *m_szText;
+} rc_script_t;
+
+/* Processor class */
+typedef struct {
+ rc_script_t *m_pScript;
+} rc_proc_t;
+
#endif /* __OSSPRC_PRIVATE_H__ */
|
|