blob: 83344e05c7ed934f3aaad82244b245d597c1f36f (
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_PNG_IMAGE_GUARD
#define FL_PNG_IMAGE_GUARD
typedef void* PNGIMAGE;
extern "C" PNGIMAGE new_fl_png_image(const char * f);
extern "C" PNGIMAGE new_fl_png_image2(const char *name, void *data, int size);
extern "C" void free_fl_png_image(PNGIMAGE p);
#endif
|