1 #ifndef MENU_WIDGET_H_INCLUDED 2 #define MENU_WIDGET_H_INCLUDED 3 4 #include "widget.h" 5 #include <menu.h> 6 7 int menu_widget_handle_key(MENU *menu, int key); 8 void menu_widget_create(struct widget *widget, MENU *menu, const char *title); 9 10 #endif 11