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_int_input.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/c_fl_int_input.h') diff --git a/src/c_fl_int_input.h b/src/c_fl_int_input.h index 5d99c3f..7bfd74d 100644 --- a/src/c_fl_int_input.h +++ b/src/c_fl_int_input.h @@ -7,6 +7,9 @@ typedef void* INT_INPUT; +extern "C" void int_input_set_draw_hook(INT_INPUT n, void * d); +extern "C" void fl_int_input_draw(INT_INPUT n); + extern "C" INT_INPUT new_fl_int_input(int x, int y, int w, int h, char* label); extern "C" void free_fl_int_input(INT_INPUT i); -- cgit