From c47bea48a24e51e178354f3e3bb53d8b9964b769 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Tue, 6 Feb 2024 21:53:06 +1300 Subject: Moved mouse cursors and added cursor functions to FLTK.Draw --- src/c_fl_draw.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/c_fl_draw.h') diff --git a/src/c_fl_draw.h b/src/c_fl_draw.h index 592087c..dec536c 100644 --- a/src/c_fl_draw.h +++ b/src/c_fl_draw.h @@ -36,6 +36,8 @@ extern "C" void fl_draw_overlay_rect(int x, int y, int w, int h); extern "C" unsigned int fl_draw_get_color(); extern "C" void fl_draw_set_color(unsigned int c); extern "C" void fl_draw_set_color2(uchar r, uchar g, uchar b); +extern "C" void fl_draw_set_cursor(int m); +extern "C" void fl_draw_set_cursor2(int m, unsigned int f, unsigned int b); extern "C" unsigned int fl_draw_get_font(); extern "C" int fl_draw_size(); extern "C" void fl_draw_set_font(unsigned int f, int s); -- cgit