diff options
Diffstat (limited to 'body/c_fl_jpeg_image.h')
-rw-r--r-- | body/c_fl_jpeg_image.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/body/c_fl_jpeg_image.h b/body/c_fl_jpeg_image.h new file mode 100644 index 0000000..013ae37 --- /dev/null +++ b/body/c_fl_jpeg_image.h @@ -0,0 +1,21 @@ + + +// Programmed by Jedidiah Barber +// Released into the public domain + + +#ifndef FL_JPEG_IMAGE_GUARD +#define FL_JPEG_IMAGE_GUARD + + +typedef void* JPEGIMAGE; + + +extern "C" JPEGIMAGE new_fl_jpeg_image(const char * f); +extern "C" JPEGIMAGE new_fl_jpeg_image2(const char * n, void *data); +extern "C" void free_fl_jpeg_image(JPEGIMAGE j); + + +#endif + + |