From a3a475cc6a88e7fbd5d55cbca3dd517c0d34b260 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Wed, 25 May 2016 01:10:29 +1000 Subject: Buttons and accessors --- c_fl_repeat_button.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 c_fl_repeat_button.h (limited to 'c_fl_repeat_button.h') diff --git a/c_fl_repeat_button.h b/c_fl_repeat_button.h new file mode 100644 index 0000000..9712f41 --- /dev/null +++ b/c_fl_repeat_button.h @@ -0,0 +1,15 @@ + + +#ifndef FL_REPEAT_BUTTON_GUARD +#define FL_REPEAT_BUTTON_GUARD + + +typedef void* my_fl_repeat_button; + + +extern "C" my_fl_repeat_button new_fl_repeat_button(int x, int y, int w, int h, char * label); +extern "C" void free_fl_repeat_button(my_fl_repeat_button b); + + +#endif + -- cgit