summaryrefslogtreecommitdiff
path: root/src/c_fl_jpeg_image.cpp
blob: 763c55f70cf8686b973b2772ced0660661e07af9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16


#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;
}


void free_fl_jpeg_image(JPEG_IMAGE j) {
    delete reinterpret_cast<Fl_JPEG_Image*>(j);
}