diff options
Diffstat (limited to 'src/c_fl_xbm_image.h')
-rw-r--r-- | src/c_fl_xbm_image.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/c_fl_xbm_image.h b/src/c_fl_xbm_image.h index c7ed8ca..668d3f8 100644 --- a/src/c_fl_xbm_image.h +++ b/src/c_fl_xbm_image.h @@ -8,16 +8,13 @@ #define FL_XBM_IMAGE_GUARD +typedef void* XBMIMAGE; -typedef void* XBM_IMAGE; - - - - -extern "C" XBM_IMAGE new_fl_xbm_image(const char * f); -extern "C" void free_fl_xbm_image(XBM_IMAGE b); +extern "C" XBMIMAGE new_fl_xbm_image(const char * f); +extern "C" void free_fl_xbm_image(XBMIMAGE b); #endif + |