10 lines
238 B
C
10 lines
238 B
C
#ifndef MENU_WIDGET_H_INCLUDED
|
|
#define MENU_WIDGET_H_INCLUDED
|
|
|
|
#include "widget.h"
|
|
#include <menu.h>
|
|
|
|
int menu_widget_handle_key(MENU *menu, int key);
|
|
void menu_widget_create(struct widget *widget, MENU *menu, const char *title);
|
|
|
|
#endif
|