FLAMCLE/P-API
Command Line Executor/Parser Application Programming Interface
CLPMAC.h
Go to the documentation of this file.
1 /*******************************************************************************/
23 #include <stddef.h>
24 
27 #undef CLPARGTAB_SKALAR
28 #undef CLPARGTAB_STRING
29 #undef CLPARGTAB_ARRAY
30 #undef CLPARGTAB_DYNSTR
31 #undef CLPARGTAB_DYNARY
32 #undef CLPARGTAB_ALIAS
33 #undef CLPARGTAB_CLS
34 
35 #ifdef DEFINE_STRUCT
36 
37 /* Makros zum Struktur-Aufbau */
38 #define CLPARGTAB_SKALAR(kyw,nam,typ,min,max,atyp,flg,oid,tab,dft,man,hlp) typ nam;
39 #define CLPARGTAB_STRING(kyw,nam,siz,min,max,atyp,flg,oid,tab,dft,man,hlp) U08 nam[siz];
40 #define CLPARGTAB_ARRAY( kyw,nam,typ,min,max,atyp,flg,oid,tab,dft,man,hlp) typ nam[max];
41 #define CLPARGTAB_DYNSTR(kyw,nam,siz,min,max,atyp,flg,oid,tab,dft,man,hlp) U08* nam;
42 #define CLPARGTAB_DYNARY(kyw,nam,typ,min,max,atyp,flg,oid,tab,dft,man,hlp) typ* nam;
43 #define CLPARGTAB_ALIAS( kyw,ali )
44 #define CLPARGTAB_CLS
45 
46 #else
47 
69 #define CLPARGTAB_SKALAR(kyw,nam,typ,min,max,atyp,flg,oid,tab,dft,man,hlp) { atyp ,(kyw), NULL,(min), 1 ,sizeof(typ), offsetof(STRUCT_NAME,nam),(oid),(flg) ,(tab),(dft),(man),(hlp),0,0.0,NULL,#typ},
70 
87 #define CLPARGTAB_STRING(kyw,nam,siz,min,max,atyp,flg,oid,tab,dft,man,hlp) { CLPTYP_STRING,(kyw), NULL,(min),(max), (siz), offsetof(STRUCT_NAME,nam),(oid),(flg) ,(tab),(dft),(man),(hlp),0,0.0,NULL,NULL},
88 
105 #define CLPARGTAB_DYNSTR(kyw,nam,siz,min,max,atyp,flg,oid,tab,dft,man,hlp) { CLPTYP_STRING,(kyw), NULL,(min),(max), (siz), offsetof(STRUCT_NAME,nam),(oid),((flg)|CLPFLG_DYN),(tab),(dft),(man),(hlp),0,0.0,NULL,NULL},
106 
123 #define CLPARGTAB_ARRAY( kyw,nam,typ,min,max,atyp,flg,oid,tab,dft,man,hlp) { atyp ,(kyw), NULL,(min),(max),sizeof(typ), offsetof(STRUCT_NAME,nam),(oid),(flg) ,(tab),(dft),(man),(hlp),0,0.0,NULL,#typ},
124 
141 #define CLPARGTAB_DYNARY( kyw,nam,typ,min,max,atyp,flg,oid,tab,dft,man,hlp) { atyp ,(kyw), NULL,(min),(max),sizeof(typ), offsetof(STRUCT_NAME,nam),(oid),((flg)|CLPFLG_DYN),(tab),(dft),(man),(hlp),0,0.0,NULL,#typ},
142 
149 #define CLPARGTAB_ALIAS( kyw,ali ) { CLPTYP_XALIAS,(kyw),(ali), 0 , 0 , 0 , 0 , 0 , CLPFLG_ALI, NULL, NULL, NULL, NULL,0,0.0,NULL,NULL},
150 
153 #define CLPARGTAB_CLS { CLPTYP_NON , NULL, NULL, 0 , 0 , 0 , 0 , 0 , 0 , NULL, NULL, NULL, NULL,0,0.0,NULL,NULL}
154 
158 #endif
159