From a4b14b883f918161d2c235a52730d159b2f9ca7a Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Fri, 16 Sep 2016 04:10:49 +1000 Subject: Adapad menus and callbacks now present in skeleton form, also Text_Buffers have callbacks too --- c_fl_text_editor.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'c_fl_text_editor.h') diff --git a/c_fl_text_editor.h b/c_fl_text_editor.h index 2eda9f3..7c7cee5 100644 --- a/c_fl_text_editor.h +++ b/c_fl_text_editor.h @@ -11,5 +11,11 @@ extern "C" TEXTEDITOR new_fl_text_editor(int x, int y, int w, int h, char* label extern "C" void free_fl_text_editor(TEXTEDITOR te); +extern "C" void fl_text_editor_cut (TEXTEDITOR te); +extern "C" void fl_text_editor_copy (TEXTEDITOR te); +extern "C" void fl_text_editor_paste (TEXTEDITOR te); +extern "C" void fl_text_editor_delete (TEXTEDITOR te); + + #endif -- cgit