From ac5c51b6ee492b504e165408b742d2505e308e94 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Tue, 24 May 2016 02:25:30 +1000 Subject: It's a start --- c_fl_button.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 c_fl_button.h (limited to 'c_fl_button.h') diff --git a/c_fl_button.h b/c_fl_button.h new file mode 100644 index 0000000..a83e3d8 --- /dev/null +++ b/c_fl_button.h @@ -0,0 +1,15 @@ + + +#ifndef FL_BUTTON_GUARD +#define FL_BUTTON_GUARD + + +typedef void* my_fl_button; + + +extern "C" my_fl_button new_fl_button(int x, int y, int w, int h, char * label); +extern "C" void free_fl_button(my_fl_button f); + + +#endif + -- cgit