diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-16 14:21:05 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-16 14:21:05 +1300 |
commit | dbf6f4db24aee7315b2782a87e127367887e2036 (patch) | |
tree | 91f5af52dbdf6be9e1f5026bcf354a6455dd411d /src/c_fl_xpm_image.h | |
parent | ba1719013e5bab82a2accb4aadfd8451c3ebc931 (diff) |
Changed reinterpret_cast to static_cast where applicable
Diffstat (limited to 'src/c_fl_xpm_image.h')
-rw-r--r-- | src/c_fl_xpm_image.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/c_fl_xpm_image.h b/src/c_fl_xpm_image.h index d1ac6eb..a925c33 100644 --- a/src/c_fl_xpm_image.h +++ b/src/c_fl_xpm_image.h @@ -8,16 +8,13 @@ #define FL_XPM_IMAGE_GUARD +typedef void* XPMIMAGE; -typedef void* XPM_IMAGE; - - - - -extern "C" XPM_IMAGE new_fl_xpm_image(const char * f); -extern "C" void free_fl_xpm_image(XPM_IMAGE j); +extern "C" XPMIMAGE new_fl_xpm_image(const char * f); +extern "C" void free_fl_xpm_image(XPMIMAGE j); #endif + |