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


#ifndef FL_CHECK_BUTTON_GUARD
#define FL_CHECK_BUTTON_GUARD


typedef void* CHECKBUTTON;


extern "C" CHECKBUTTON new_fl_check_button(int x, int y, int w, int h, char* label);
extern "C" void free_fl_check_button(CHECKBUTTON b);


#endif