summaryrefslogtreecommitdiff
path: root/src/fltk_binding/c_fl_text_buffer.h
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-10-04 18:52:32 +1100
committerJed Barber <jjbarber@y7mail.com>2016-10-04 18:52:32 +1100
commit1f9e7a15d9414b1a96691111069523a70e107f16 (patch)
tree6a1a2642cf8936cd9bd2aa013229e6f9c2b79860 /src/fltk_binding/c_fl_text_buffer.h
parent7a84d0f3d0d181196b24795592a260e05b63fa74 (diff)
Basic find functionality working
Diffstat (limited to 'src/fltk_binding/c_fl_text_buffer.h')
-rw-r--r--src/fltk_binding/c_fl_text_buffer.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fltk_binding/c_fl_text_buffer.h b/src/fltk_binding/c_fl_text_buffer.h
index 906ef8c..cd64112 100644
--- a/src/fltk_binding/c_fl_text_buffer.h
+++ b/src/fltk_binding/c_fl_text_buffer.h
@@ -19,6 +19,7 @@ extern "C" int fl_text_buffer_length(TEXTBUFFER tb);
extern "C" int fl_text_buffer_loadfile(TEXTBUFFER tb, char * n);
extern "C" void fl_text_buffer_remove_selection(TEXTBUFFER tb);
extern "C" int fl_text_buffer_savefile(TEXTBUFFER tb, char * n);
+extern "C" int fl_text_buffer_search_forward(TEXTBUFFER tb, int start, const char * item, int * found, int mcase);
extern "C" void fl_text_buffer_select(TEXTBUFFER tb, int s, int e);