summaryrefslogtreecommitdiff
path: root/src/c_fl_bmp_image.h
blob: e857fb78b71cf585698c3dd7e8c54fc43ae97a3c (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_BMP_IMAGE_GUARD
#define FL_BMP_IMAGE_GUARD


typedef void* BMPIMAGE;


extern "C" BMPIMAGE new_fl_bmp_image(const char * f);
extern "C" void free_fl_bmp_image(BMPIMAGE b);


#endif