From ca9cca53a19145216cb0e00462db239e1194696d Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sun, 29 Apr 2018 00:39:36 +1000 Subject: FLTK.Event done, a whole bunch more polishing --- src/c_fl_scroll.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/c_fl_scroll.cpp') diff --git a/src/c_fl_scroll.cpp b/src/c_fl_scroll.cpp index 659b042..281446a 100644 --- a/src/c_fl_scroll.cpp +++ b/src/c_fl_scroll.cpp @@ -70,6 +70,13 @@ void free_fl_scroll(SCROLL s) { +void fl_scroll_clear(SCROLL s) { + reinterpret_cast(s)->clear(); +} + + + + void fl_scroll_to(SCROLL s, int x, int y) { reinterpret_cast(s)->scroll_to(x, y); } -- cgit