summaryrefslogtreecommitdiff
path: root/src/c_fl_xbm_image.h
blob: 668d3f8c56910cadf857abca27d6b8b41c50bc02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20


//  Programmed by Jedidiah Barber
//  Released into the public domain


#ifndef FL_XBM_IMAGE_GUARD
#define FL_XBM_IMAGE_GUARD


typedef void* XBMIMAGE;


extern "C" XBMIMAGE new_fl_xbm_image(const char * f);
extern "C" void free_fl_xbm_image(XBMIMAGE b);


#endif