7 lines
No EOL
97 B
C
7 lines
No EOL
97 B
C
typedef struct _menu
|
|
{
|
|
struct _menu* n;
|
|
void(*f)(struct _menu* this);
|
|
}Menu;
|
|
|
|
void menuInit(); |