| Revision 1621,
529 bytes
checked in by philmoz, 17 months ago
(diff) |
|
Some more code cleanup and re-work in the development trunk.
- cleanup initialisation of OSD position and int array config items.
- move functions related to 'user' menu to 'gui_user_menu.c' and gui_user_menu.h' files.
- move code for OSD layout editor to 'gui_osd_edit.c', converted to a module so only loaded when actually changing the OSD layout.
- cleanup of OSD display functions in gui_osd.c.
|
| Line | |
|---|
| 1 | #ifndef GUI_USER_MENU_H |
|---|
| 2 | #define GUI_USER_MENU_H |
|---|
| 3 | |
|---|
| 4 | //------------------------------------------------------------------- |
|---|
| 5 | extern void add_user_menu_item(CMenuItem curr_menu_item, int* cur_memnu_item_indx); |
|---|
| 6 | extern void del_user_menu_item(int* cur_memnu_item_indx); |
|---|
| 7 | extern void move_user_menu_item_up(int* cur_memnu_item_indx); |
|---|
| 8 | extern void move_user_menu_item_down(int* cur_memnu_item_indx); |
|---|
| 9 | extern void user_menu_save(); |
|---|
| 10 | extern void user_menu_restore(); |
|---|
| 11 | |
|---|
| 12 | //------------------------------------------------------------------- |
|---|
| 13 | |
|---|
| 14 | #endif |
|---|
Note: See
TracBrowser
for help on using the repository browser.