blob: 9b0c9672b599ac1cd99311919e0455a6dfec5b6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef FL_XBM_IMAGE_GUARD
#define FL_XBM_IMAGE_GUARD
typedef void* XBM_IMAGE;
extern "C" XBM_IMAGE new_fl_xbm_image(const char * f);
extern "C" void free_fl_xbm_image(XBM_IMAGE b);
#endif
|