#ifndef MENU_H
#define MENU_H
#include "../ui/menu.h"
#include "toolkit.h"
#ifdef __cplusplus
extern "C" {
#endif
UI_IMPORT void __stdcall UImenu(
char *label);
UI_IMPORT void __stdcall UIsubmenu(
char *label);
UI_IMPORT void __stdcall UIsubmenu_end();
UI_IMPORT void __stdcall UImenuitem(
char *label, UIcallback f,
void *udata);
void ui_obj_callback(UiObject *obj, UiEventData *e);
#ifdef __cplusplus
}
#endif
#endif