summaryrefslogtreecommitdiff
path: root/src/c_fl_xbm_image.cpp
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2017-05-22 12:32:04 +1000
committerJed Barber <jjbarber@y7mail.com>2017-05-22 12:32:04 +1000
commita504cffaf55d090fea44b4d16e538f77974f842a (patch)
tree54764e4fa505245d63b63c322ae3339455e9dbe1 /src/c_fl_xbm_image.cpp
parent26c270964941639d75d7a4dead0903116e5b62b0 (diff)
Added XBM Images
Diffstat (limited to 'src/c_fl_xbm_image.cpp')
-rw-r--r--src/c_fl_xbm_image.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/c_fl_xbm_image.cpp b/src/c_fl_xbm_image.cpp
new file mode 100644
index 0000000..4f3ee47
--- /dev/null
+++ b/src/c_fl_xbm_image.cpp
@@ -0,0 +1,16 @@
+
+
+#include <FL/Fl_XBM_Image.H>
+#include "c_fl_xbm_image.h"
+
+
+XBM_IMAGE new_fl_xbm_image(const char * f) {
+ Fl_XBM_Image *b = new Fl_XBM_Image(f);
+ return b;
+}
+
+
+void free_fl_xbm_image(XBM_IMAGE b) {
+ delete reinterpret_cast<Fl_XBM_Image*>(b);
+}
+