Changeset 272 for trunk/idl-compiler/include/parser.h
- Timestamp:
- Mar 25, 2007, 8:49:46 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/idl-compiler/include/parser.h
r271 r272 40 40 void printToken(GTokenType token); 41 41 gboolean matchNextKind(guint uiKind); 42 43 /* In printdata.c */44 void printInterface(void);45 42 46 43 … … 101 98 }SYMBOL, *PSYMBOL; 102 99 103 /* Such a struct can be found in GScanner->user_data */104 typedef struct105 {106 guint _uiCurSymbolKind;107 }SYMBOLINFO,*PSYMBOLINFO;108 109 100 typedef struct 110 101 { … … 112 103 guint uiCurSymbolKind; /* This may be e.g. KIND_TYPESPEC */ 113 104 GTree* pSymbolTree; /* Our introduced symbols */ 105 GPtrArray* pInterfaceArray; /* The pointer array holding the interfaces we found */ 114 106 guint uiLineCorrection; /* This is the line number put by the preprocessor into 115 107 the source file. It's used to calculate proper line numbers … … 181 173 182 174 void emitHFile(GPtrArray* pInterfaceArray); 175 176 /* In printdata.c */ 177 void printInterface(PINTERFACE pif); 178 void printAllInterfacec(void);
Note:
See TracChangeset
for help on using the changeset viewer.