summaryrefslogtreecommitdiff
path: root/src/c_fl_bitmap.h
blob: e1323473d7d9b9ccf0d7d5ef3efc0b8ae1d511f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16


#ifndef FL_BITMAP_GUARD
#define FL_BITMAP_GUARD


typedef void* BITMAP;


extern "C" void free_fl_bitmap(BITMAP b);
extern "C" BITMAP fl_bitmap_copy(BITMAP b, int w, int h);
extern "C" BITMAP fl_bitmap_copy2(BITMAP b);


#endif