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_box.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/c_fl_box.h (limited to 'src/c_fl_box.h') diff --git a/src/c_fl_box.h b/src/c_fl_box.h new file mode 100644 index 0000000..df7b629 --- /dev/null +++ b/src/c_fl_box.h @@ -0,0 +1,15 @@ + + +#ifndef FL_BOX_GUARD +#define FL_BOX_GUARD + + +typedef void* BOX; + + +extern "C" BOX new_fl_box(int x, int y, int w, int h, char * label); +extern "C" void free_fl_box(BOX b); + + +#endif + -- cgit