Changeset 287 for trunk/idl-compiler/include/parser.h
- Timestamp:
- Apr 1, 2007, 12:52:34 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/idl-compiler/include/parser.h
r280 r287 73 73 }METHOD, *PMETHOD; 74 74 75 /* Info about a symbol */ 76 typedef struct 77 { 78 gchar* chrSymbolName; 79 guint uiSymbolToken; 80 guint uiKind; 81 }SYMBOL, *PSYMBOL; 82 75 83 /* Struct holding all the info of a defined or declared interface */ 76 84 typedef struct … … 81 89 gulong ulMinor; /* Class version */ 82 90 gboolean fIsForwardDeclaration; 91 PSYMBOL pSymbolIFace; /* Found interfaces are registered as a symbol with the parser. 92 This is a pointer to the registered struct holding the necessary 93 info and may be used to deregister a symbol later.*/ 94 PSYMBOL pSymbolIFacePtr; /* Same as before but for the pointer on an interface which is 95 registered automatically. */ 83 96 gboolean fIsInRootFile; 84 97 gchar* chrMetaClass; /* Pointer to metaclass name or NULL*/ … … 91 104 }INTERFACE,*PINTERFACE; 92 105 93 /* Info about a symbol */94 typedef struct95 {96 gchar* chrSymbolName;97 guint uiSymbolToken;98 guint uiKind;99 }SYMBOL, *PSYMBOL;100 106 101 107 typedef struct
Note:
See TracChangeset
for help on using the changeset viewer.