From 0d842f0423ba0754fb3675c7468397a8da5f6e1b Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Thu, 27 Apr 2017 10:40:48 +1000 Subject: Organising source --- src/c_fl_light_button.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/c_fl_light_button.h (limited to 'src/c_fl_light_button.h') diff --git a/src/c_fl_light_button.h b/src/c_fl_light_button.h new file mode 100644 index 0000000..f8c005d --- /dev/null +++ b/src/c_fl_light_button.h @@ -0,0 +1,15 @@ + + +#ifndef FL_LIGHT_BUTTON_GUARD +#define FL_LIGHT_BUTTON_GUARD + + +typedef void* LIGHTBUTTON; + + +extern "C" LIGHTBUTTON new_fl_light_button(int x, int y, int w, int h, char* label); +extern "C" void free_fl_light_button(LIGHTBUTTON b); + + +#endif + -- cgit