From 26c270964941639d75d7a4dead0903116e5b62b0 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Tue, 16 May 2017 22:52:02 +1000 Subject: Bitmap images added --- src/c_fl_bitmap.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/c_fl_bitmap.h (limited to 'src/c_fl_bitmap.h') diff --git a/src/c_fl_bitmap.h b/src/c_fl_bitmap.h new file mode 100644 index 0000000..e132347 --- /dev/null +++ b/src/c_fl_bitmap.h @@ -0,0 +1,16 @@ + + +#ifndef FL_BITMAP_GUARD +#define FL_BITMAP_GUARD + + +typedef void* BITMAP; + + +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); + + +#endif + -- cgit