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


#ifndef FL_MENU_BAR_GUARD
#define FL_MENU_BAR_GUARD


typedef void* MENUBAR;


extern "C" void menu_bar_set_draw_hook(MENUBAR m, void * d);
extern "C" void fl_menu_bar_draw(MENUBAR m);

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