43 char fillMissingFixedWithZero;
48typedef struct FWTYPE *FWType;
50typedef struct FWVAL *FWval;
54typedef void * (* FWConstructor)(FWType fwtype,
int ic, FWval fwpars);
55typedef int (* FWFunction)(FWType fwtype,
void* ec,
void * fwn,
int argc, FWval fwpars, FWval fwretval);
56typedef int (* FWGet)(FWType fwtype,
int index,
void *ec,
void * fwn, FWval fwretval);
57typedef int (* FWSet)(FWType fwtype,
int index,
void *ec,
void * fwn, FWval fwsetval);
58typedef int (* FWIterator)(
int index, FWType fwt, FWPointer *pointer,
const char **name,
int *lastProp,
int *jndex,
char *type,
char *readOnly);
73 FWConstructor Constructor;
79 char takesIndexer;
char indexerReadOnly;
95#define AUXTYPE_X3DConstants 1001
96#define AUXTYPE_X3DBrowser 1002
97#define AUXTYPE_ComponentInfoArray 1010
98#define AUXTYPE_ProfileInfoArray 1011
99#define AUXTYPE_ComponentInfo 1012
100#define AUXTYPE_ProfileInfo 1013
101#define AUXTYPE_X3DRoute 1014
102#define AUXTYPE_X3DRouteArray 1015
103#define AUXTYPE_X3DScene 1016
104#define AUXTYPE_X3DExecutionContext 1017
105#define AUXTYPE_X3DProto 1018
106#define AUXTYPE_X3DProtoArray 1019
107#define AUXTYPE_X3DExternProto 1020
108#define AUXTYPE_X3DExternProtoArray 1021
109#define AUXTYPE_X3DFieldDefinition 1022
110#define AUXTYPE_X3DFieldDefinitionArray 1023
111#define AUXTYPE_X3DMatrix3 1023
112#define AUXTYPE_X3DMatrix4 1024
130FWval FWvalsNew(
int argc);