mirror of
https://github.com/RaySollium99/libpicofe.git
synced 2025-09-07 07:38:04 -04:00
GP2X updates
video stuff moved out as it's project specific..
This commit is contained in:
parent
c54d04fd84
commit
7ceadd9993
12 changed files with 313 additions and 806 deletions
5
menu.h
5
menu.h
|
@ -88,8 +88,11 @@ typedef struct
|
|||
#define mee_onoff_cust(name, id, var, mask, name_func) \
|
||||
{ name, MB_OPT_CUSTONOFF, id, &(var), mask, 0, 0, 1, 1, 1, NULL, name_func, NULL, NULL }
|
||||
|
||||
#define mee_range_cust_h(name, id, var, min, max, name_func, help) \
|
||||
{ name, MB_OPT_CUSTRANGE, id, &(var), 0, min, max, 1, 1, 1, NULL, name_func, NULL, help }
|
||||
|
||||
#define mee_range_cust(name, id, var, min, max, name_func) \
|
||||
{ name, MB_OPT_CUSTRANGE, id, &(var), 0, min, max, 1, 1, 1, NULL, name_func, NULL, NULL }
|
||||
mee_range_cust_h(name, id, var, min, max, name_func, NULL)
|
||||
|
||||
#define mee_enum_h(name, id, var, names_list, help) \
|
||||
{ name, MB_OPT_ENUM, id, &(var), 0, 0, 0, 1, 1, 1, NULL, NULL, names_list, help }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue