Changeset 326 for trunk/nom/include/nomapi.h
- Timestamp:
- Apr 9, 2008, 10:22:08 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/nom/include/nomapi.h
r294 r326 91 91 typedef struct nomStaticMethodDescStruct { 92 92 nomMToken *nomMAddressInClassData; /* Method token in class data struct */ 93 nomID nomMethodId; /* This is a 'gchar**' pointing to something like 93 nomID nomMethodId; /* This is a 'gchar**' pointing to something like 94 94 "wpQueryContainerHandle" */ 95 95 char** chrMethodDescriptor; /* This points to something like: 96 96 "WPFolderWindow:wpQueryContainerHandle" */ 97 nomMethodProc *nomMethod; /* Address of the function implementing this 97 nomMethodProc *nomMethod; /* Address of the function implementing this 98 98 method. */ 99 99 nomParmInfo *pParamInfo; /* Information about the parameter types */ … … 140 140 typedef struct 141 141 { 142 ULONGthunk[4];142 gulong thunk[4]; 143 143 }nomMethodThunk; 144 144 … … 150 150 data and methods. Note that the name may be slightly misleading. This structure is not 151 151 limited to objects/classes which are related to NOMClass. It's a structure used by every NOM 152 class (be it a normal class or a meta class). 152 class (be it a normal class or a meta class). 153 153 */ 154 typedef struct 154 typedef struct 155 155 { 156 156 nomMethodTab *mtab; /* This is the mtab for this class it points to thisMtab at the … … 164 164 nomStaticClassInfo *sci; /* Class description */ 165 165 /* FIXME: the following list may be obsolete maybe when we just use the parentMtabStruc?? */ 166 nomMethodTabList mtabList; /* The (private) internal list of mtabs we maintain 166 nomMethodTabList mtabList; /* The (private) internal list of mtabs we maintain 167 167 struct nomMethodTabList { 168 168 nomMethodTab *mtab; /mtab for this class … … 189 189 gulong fFlags; 190 190 gpointer pReserved1; 191 gpointer pReserved2; 191 gpointer pReserved2; 192 192 }nomEnvironment; 193 193
Note:
See TracChangeset
for help on using the changeset viewer.