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


#ifndef FL_TOGGLE_BUTTON_GUARD
#define FL_TOGGLE_BUTTON_GUARD


typedef void* my_fl_toggle_button;


extern "C" my_fl_toggle_button new_fl_toggle_button(int x, int y, int w, int h, char * label);
extern "C" void free_fl_toggle_button(my_fl_toggle_button b);


#endif