diff options
Diffstat (limited to 'src/c_fl_jpeg_image.cpp')
-rw-r--r-- | src/c_fl_jpeg_image.cpp | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/c_fl_jpeg_image.cpp b/src/c_fl_jpeg_image.cpp deleted file mode 100644 index be99257..0000000 --- a/src/c_fl_jpeg_image.cpp +++ /dev/null @@ -1,22 +0,0 @@ - - -#include <FL/Fl_JPEG_Image.H> -#include "c_fl_jpeg_image.h" - - - - -JPEG_IMAGE new_fl_jpeg_image(const char * f) { - Fl_JPEG_Image *j = new Fl_JPEG_Image(f); - return j; -} - -JPEG_IMAGE new_fl_jpeg_image2(const char *n, void *data) { - Fl_JPEG_Image *j = new Fl_JPEG_Image(n, reinterpret_cast<uchar*>(data)); - return j; -} - -void free_fl_jpeg_image(JPEG_IMAGE j) { - delete reinterpret_cast<Fl_JPEG_Image*>(j); -} - |