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_bitmap.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 body/c_fl_bitmap.h (limited to 'body/c_fl_bitmap.h') diff --git a/body/c_fl_bitmap.h b/body/c_fl_bitmap.h new file mode 100644 index 0000000..f5f6e15 --- /dev/null +++ b/body/c_fl_bitmap.h @@ -0,0 +1,29 @@ + + +// Programmed by Jedidiah Barber +// Released into the public domain + + +#ifndef FL_BITMAP_GUARD +#define FL_BITMAP_GUARD + + +typedef void* BITMAP; + + +extern "C" BITMAP new_fl_bitmap(void *data, int w, int h); +extern "C" void free_fl_bitmap(BITMAP b); +extern "C" BITMAP fl_bitmap_copy(BITMAP b, int w, int h); +extern "C" BITMAP fl_bitmap_copy2(BITMAP b); + + +extern "C" void fl_bitmap_uncache(BITMAP b); + + +extern "C" void fl_bitmap_draw2(BITMAP b, int x, int y); +extern "C" void fl_bitmap_draw(BITMAP b, int x, int y, int w, int h, int cx, int cy); + + +#endif + + -- cgit