From f9e453e3d456514066e8ecbed9fbac93a588a0d0 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Tue, 21 Jan 2025 00:53:56 +1300 Subject: Using the type method is now more consistent --- src/c_fl_scroll.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/c_fl_scroll.h') diff --git a/src/c_fl_scroll.h b/src/c_fl_scroll.h index a6f3767..fe8674e 100644 --- a/src/c_fl_scroll.h +++ b/src/c_fl_scroll.h @@ -20,13 +20,12 @@ extern "C" void * fl_scroll_scrollbar(SCROLL s); extern "C" void fl_scroll_to(SCROLL s, int x, int y); -extern "C" void fl_scroll_set_type(SCROLL s, int t); +extern "C" int fl_scroll_xposition(SCROLL s); +extern "C" int fl_scroll_yposition(SCROLL s); extern "C" int fl_scroll_get_size(SCROLL s); extern "C" void fl_scroll_set_size(SCROLL s, int t); -extern "C" int fl_scroll_xposition(SCROLL s); -extern "C" int fl_scroll_yposition(SCROLL s); extern "C" void fl_scroll_draw(SCROLL s); -- cgit