From e9dc75679fcac3bf2024e47641941d0a5ef0899d Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Mon, 1 May 2017 12:49:40 +1000 Subject: Draw method implemented for Boxes/Inputs --- src/c_fl_input.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/c_fl_input.h') diff --git a/src/c_fl_input.h b/src/c_fl_input.h index cb40d42..2262a2f 100644 --- a/src/c_fl_input.h +++ b/src/c_fl_input.h @@ -7,6 +7,9 @@ typedef void* INPUT; +extern "C" void input_set_draw_hook(INPUT n, void * d); +extern "C" void fl_input_draw(INPUT n); + extern "C" INPUT new_fl_input(int x, int y, int w, int h, char* label); extern "C" void free_fl_input(INPUT i); -- cgit