1 #ifndef GUI_READ_H 2 #define GUI_READ_H 3 4 #include "flt.h" 5 6 // Update version if changes are made to the module interface 7 #define GUI_READ_VERSION {2,0} 8 9 typedef struct 10 { 11 base_interface_t base; 12 13 int (*read_file)(const char *fn); 14 } libtxtread_sym; 15 16 //------------------------------------------------------------------- 17 extern libtxtread_sym* libtxtread; 18 19 //------------------------------------------------------------------- 20 #endif