blob: 013ae37ada812e19931b465e055c90b089407c09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
|