diff options
Diffstat (limited to 'src/c_fl_tile.h')
-rw-r--r-- | src/c_fl_tile.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/c_fl_tile.h b/src/c_fl_tile.h deleted file mode 100644 index 3254558..0000000 --- a/src/c_fl_tile.h +++ /dev/null @@ -1,28 +0,0 @@ - - -// Programmed by Jedidiah Barber -// Released into the public domain - - -#ifndef FL_TILE_GUARD -#define FL_TILE_GUARD - - -typedef void* TILE; - - -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" void fl_tile_position(TILE t, int ox, int oy, int nx, int ny); -extern "C" void fl_tile_resize(TILE t, int x, int y, int w, int h); - - -extern "C" void fl_tile_draw(TILE n); -extern "C" int fl_tile_handle(TILE n, int e); - - -#endif - - |