From 6fa5de9c6015c2d93aac1f3e379844fc36ff865f Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sun, 13 Nov 2016 18:44:21 +1100 Subject: Added jump to feature --- c_fl_text_display.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'c_fl_text_display.cpp') diff --git a/c_fl_text_display.cpp b/c_fl_text_display.cpp index d1785e2..85ad733 100644 --- a/c_fl_text_display.cpp +++ b/c_fl_text_display.cpp @@ -88,3 +88,13 @@ void fl_text_display_wrap_mode(TEXTDISPLAY td, int w, int m) { reinterpret_cast(td)->wrap_mode(w, m); } + +int fl_text_display_skip_lines(TEXTDISPLAY td, int s, int l, int p) { + return reinterpret_cast(td)->skip_lines(s, l, p); +} + + +int fl_text_display_rewind_lines(TEXTDISPLAY td, int s, int l) { + return reinterpret_cast(td)->rewind_lines(s, l); +} + -- cgit