From fb37523537cdb69a31dede401a604981ce8b7b9d Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sat, 17 Jun 2017 11:28:39 +1000 Subject: Updated coding style, added progress log --- src/c_fl_rgb_image.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/c_fl_rgb_image.h') diff --git a/src/c_fl_rgb_image.h b/src/c_fl_rgb_image.h index 3209909..2879be1 100644 --- a/src/c_fl_rgb_image.h +++ b/src/c_fl_rgb_image.h @@ -4,14 +4,20 @@ #define FL_RGB_IMAGE_GUARD + + typedef void* RGB_IMAGE; + + extern "C" void free_fl_rgb_image(RGB_IMAGE i); extern "C" RGB_IMAGE fl_rgb_image_copy(RGB_IMAGE i, int w, int h); extern "C" RGB_IMAGE fl_rgb_image_copy2(RGB_IMAGE i); + + extern "C" void fl_rgb_image_color_average(RGB_IMAGE i, int c, float b); extern "C" void fl_rgb_image_desaturate(RGB_IMAGE i); -- cgit