Passed *every* piece of source in this project through indent. I'm setting things up with ctags soon and am actually going to *gasp* use a nice programming environment to continue development in. :)
26 lines
550 B
C
26 lines
550 B
C
#ifndef CLIENT_MENU_H
|
|
#define CLIENT_MENU_H
|
|
|
|
/*
|
|
hee-hee.. this isn't implemented yet.
|
|
|
|
Eventually, it'll handle client-supplied menus, and send back info about
|
|
what the user does.
|
|
*/
|
|
|
|
typedef struct client_menu {
|
|
char id[];
|
|
LL *items;
|
|
} client_menu;
|
|
|
|
typedef struct client_menu_item {
|
|
char id[];
|
|
int type; // Title, function, submenu, slider, checkbox, etc...
|
|
int value; // Holds stuff like "true", 43, etc...
|
|
char text[]; // Text to display here...
|
|
char child[]; // For the "submenu" type
|
|
} client_menu;
|
|
|
|
|
|
#endif
|