blob: 159246568ce5c0c855a9b1789dcd3dffedcd1094 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef FL_JPEG_IMAGE_GUARD
#define FL_JPEG_IMAGE_GUARD
typedef void* JPEG_IMAGE;
extern "C" JPEG_IMAGE new_fl_jpeg_image(const char * f);
extern "C" JPEG_IMAGE new_fl_jpeg_image2(const char * n, void *data);
extern "C" void free_fl_jpeg_image(JPEG_IMAGE j);
#endif
|