1 /*-----------------------------------------------------------------------------------*/
4 /*-----------------------------------------------------------------------------------*/
5 #ifndef __GW_DATA_STRUCTURES1__
6 #define __GW_DATA_STRUCTURES1__
19 typedef int (*Data_structures1_Interf) __PARAMS((char *fname,unsigned long fname_len));
21 typedef struct table_struct
23 Data_structures1_Interf f; /** function **/
24 char *name; /** its name **/
25 } DataStructures1Table;
27 #endif /* __GW_DATA_STRUCTURES1__ */
28 /*-----------------------------------------------------------------------------------*/