summaryrefslogtreecommitdiff
path: root/src/fltk_binding/c_fl_menu_bar.h
blob: a09d22bf7e9fd9479cc774c3906108b96e3cb10f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15


#ifndef FL_MENU_BAR_GUARD
#define FL_MENU_BAR_GUARD


typedef void* MENUBAR;


extern "C" MENUBAR new_fl_menu_bar(int x, int y, int w, int h, char* label);
extern "C" void free_fl_menu_bar(MENUBAR m);


#endif