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