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