summaryrefslogtreecommitdiff
path: root/src/c_fl_tile.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_fl_tile.h')
-rw-r--r--src/c_fl_tile.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/c_fl_tile.h b/src/c_fl_tile.h
index b87e806..88e72d9 100644
--- a/src/c_fl_tile.h
+++ b/src/c_fl_tile.h
@@ -11,21 +11,21 @@ typedef void* TILE;
-extern "C" void tile_set_draw_hook(TILE n, void * d);
-extern "C" void fl_tile_draw(TILE n);
-extern "C" void tile_set_handle_hook(TILE n, void * h);
-extern "C" int fl_tile_handle(TILE n, int e);
+extern "C" inline void tile_set_draw_hook(TILE n, void * d);
+extern "C" inline void fl_tile_draw(TILE n);
+extern "C" inline void tile_set_handle_hook(TILE n, void * h);
+extern "C" inline int fl_tile_handle(TILE n, int e);
-extern "C" TILE new_fl_tile(int x, int y, int w, int h, char * label);
-extern "C" void free_fl_tile(TILE t);
+extern "C" inline TILE new_fl_tile(int x, int y, int w, int h, char * label);
+extern "C" inline void free_fl_tile(TILE t);
-extern "C" void fl_tile_position(TILE t, int ox, int oy, int nx, int ny);
+extern "C" inline void fl_tile_position(TILE t, int ox, int oy, int nx, int ny);
#endif