From b4438b2fbe895694be98e6e8426103deefc51448 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Tue, 21 Jan 2025 21:04:54 +1300 Subject: Split public API and private implementation files into different directories --- body/c_fl_box.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 body/c_fl_box.h (limited to 'body/c_fl_box.h') diff --git a/body/c_fl_box.h b/body/c_fl_box.h new file mode 100644 index 0000000..5143c3f --- /dev/null +++ b/body/c_fl_box.h @@ -0,0 +1,25 @@ + + +// Programmed by Jedidiah Barber +// Released into the public domain + + +#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" BOX new_fl_box2(int k, int x, int y, int w, int h, char * label); +extern "C" void free_fl_box(BOX b); + + +extern "C" void fl_box_draw(BOX n); +extern "C" int fl_box_handle(BOX n, int e); + + +#endif + + -- cgit