9183fa1755
added a bunch of const everywhere, had to modify a few functions to be const-compliant
13 lines
147 B
C
13 lines
147 B
C
#ifndef MENUSECTION_H_
|
|
#define MENUSECTION_H_
|
|
|
|
struct menu_section
|
|
{
|
|
const char *icon;
|
|
const char *name;
|
|
int itemcount;
|
|
int doshow;
|
|
};
|
|
|
|
#endif
|