diff options
Diffstat (limited to 'body/c_fl_xbm_image.cpp')
-rw-r--r-- | body/c_fl_xbm_image.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/body/c_fl_xbm_image.cpp b/body/c_fl_xbm_image.cpp new file mode 100644 index 0000000..2ecd890 --- /dev/null +++ b/body/c_fl_xbm_image.cpp @@ -0,0 +1,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); +} + + |