summaryrefslogtreecommitdiff
path: root/c_fl_text_editor.h
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-09-16 04:10:49 +1000
committerJed Barber <jjbarber@y7mail.com>2016-09-16 04:10:49 +1000
commita4b14b883f918161d2c235a52730d159b2f9ca7a (patch)
treee157eaac1f41c2c575def19e477bf1983fa67a8c /c_fl_text_editor.h
parent1c0383b276531367c579549b4b640e9de0184500 (diff)
Adapad menus and callbacks now present in skeleton form, also Text_Buffers have callbacks too
Diffstat (limited to 'c_fl_text_editor.h')
-rw-r--r--c_fl_text_editor.h6
1 files changed, 6 insertions, 0 deletions
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