blob: 2ecd890fc3b8c7390b7fe63b731f0dae1605c78b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Programmed by Jedidiah Barber
// Released into the public domain
#include <FL/Fl_XBM_Image.H>
#include "c_fl_xbm_image.h"
XBMIMAGE new_fl_xbm_image(const char * f) {
Fl_XBM_Image *b = new Fl_XBM_Image(f);
return b;
}
void free_fl_xbm_image(XBMIMAGE b) {
delete static_cast<Fl_XBM_Image*>(b);
}
|