From 727cd771facf506910ddbb63532b3b6af7fb1b77 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Mon, 1 May 2017 20:53:10 +1000 Subject: Draw method implemented for all Button variations (ugh) --- src/c_fl_round_button.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/c_fl_round_button.h') diff --git a/src/c_fl_round_button.h b/src/c_fl_round_button.h index 36113a4..d725cd9 100644 --- a/src/c_fl_round_button.h +++ b/src/c_fl_round_button.h @@ -7,6 +7,9 @@ typedef void* ROUNDBUTTON; +extern "C" void round_button_set_draw_hook(ROUNDBUTTON b, void * d); +extern "C" void fl_round_button_draw(ROUNDBUTTON b); + extern "C" ROUNDBUTTON new_fl_round_button(int x, int y, int w, int h, char* label); extern "C" void free_fl_round_button(ROUNDBUTTON b); -- cgit