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_multiline_output.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 body/c_fl_multiline_output.h (limited to 'body/c_fl_multiline_output.h') diff --git a/body/c_fl_multiline_output.h b/body/c_fl_multiline_output.h new file mode 100644 index 0000000..43fee90 --- /dev/null +++ b/body/c_fl_multiline_output.h @@ -0,0 +1,24 @@ + + +// Programmed by Jedidiah Barber +// Released into the public domain + + +#ifndef FL_MULTILINE_OUTPUT_GUARD +#define FL_MULTILINE_OUTPUT_GUARD + + +typedef void* MULTILINEOUTPUT; + + +extern "C" MULTILINEOUTPUT new_fl_multiline_output(int x, int y, int w, int h, char* label); +extern "C" void free_fl_multiline_output(MULTILINEOUTPUT i); + + +extern "C" void fl_multiline_output_draw(MULTILINEOUTPUT i); +extern "C" int fl_multiline_output_handle(MULTILINEOUTPUT i, int e); + + +#endif + + -- cgit