blob: 93ab22d25450673de9dcf27e83a1f3981e16a023 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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);
}
|