1 2 3 4 5 6 7 8 9 10 11 12
#ifndef MENUSECTION_H_ #define MENUSECTION_H_ struct menu_section { char *icon; const char *name; int itemcount; int doshow; }; #endif