From 99ea64c2c914608d3429e63845f8ed396b234dd7 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Wed, 25 May 2016 01:10:29 +1000 Subject: Buttons and accessors --- src/fltk_binding/c_fl_toggle_button.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/fltk_binding/c_fl_toggle_button.h (limited to 'src/fltk_binding/c_fl_toggle_button.h') diff --git a/src/fltk_binding/c_fl_toggle_button.h b/src/fltk_binding/c_fl_toggle_button.h new file mode 100644 index 0000000..a5d7f13 --- /dev/null +++ b/src/fltk_binding/c_fl_toggle_button.h @@ -0,0 +1,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 + -- cgit