summaryrefslogtreecommitdiff
path: root/src/c_fl_image_surface.h
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2018-04-29 00:39:36 +1000
committerJed Barber <jjbarber@y7mail.com>2018-04-29 00:39:36 +1000
commitca9cca53a19145216cb0e00462db239e1194696d (patch)
treef76a7688667c12bfe8ccfb80343fe7a48aa71624 /src/c_fl_image_surface.h
parentae3aaf71338960e85d27c88d7004497409c6a6d9 (diff)
FLTK.Event done, a whole bunch more polishing
Diffstat (limited to 'src/c_fl_image_surface.h')
-rw-r--r--src/c_fl_image_surface.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/c_fl_image_surface.h b/src/c_fl_image_surface.h
index 0ad97a3..a021993 100644
--- a/src/c_fl_image_surface.h
+++ b/src/c_fl_image_surface.h
@@ -11,21 +11,21 @@ typedef void* IMAGE_SURFACE;
-extern "C" IMAGE_SURFACE new_fl_image_surface(int w, int h, int r);
-extern "C" void free_fl_image_surface(IMAGE_SURFACE s);
+extern "C" inline IMAGE_SURFACE new_fl_image_surface(int w, int h, int r);
+extern "C" inline void free_fl_image_surface(IMAGE_SURFACE s);
-extern "C" void fl_image_surface_draw(IMAGE_SURFACE s, void * w, int dx, int dy);
-extern "C" void fl_image_surface_draw_decorated_window(IMAGE_SURFACE s, void * w, int dx, int dy);
+extern "C" inline void fl_image_surface_draw(IMAGE_SURFACE s, void * w, int dx, int dy);
+extern "C" inline void fl_image_surface_draw_decorated_window(IMAGE_SURFACE s, void * w, int dx, int dy);
-extern "C" void * fl_image_surface_image(IMAGE_SURFACE s);
-extern "C" void * fl_image_surface_highres_image(IMAGE_SURFACE s);
+extern "C" inline void * fl_image_surface_image(IMAGE_SURFACE s);
+extern "C" inline void * fl_image_surface_highres_image(IMAGE_SURFACE s);
-extern "C" void fl_image_surface_set_current(IMAGE_SURFACE s);
+extern "C" inline void fl_image_surface_set_current(IMAGE_SURFACE s);
#endif