summaryrefslogtreecommitdiff
path: root/c_fl_text_editor.h
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-09-19 18:48:47 +1000
committerJed Barber <jjbarber@y7mail.com>2016-09-19 18:48:47 +1000
commitd12fdd75d1c131bbe4bd49413c3da51131cd1e73 (patch)
tree90cdd01f7a2c6d9bafccb345314a22d60c5ffa60 /c_fl_text_editor.h
parenta4b14b883f918161d2c235a52730d159b2f9ca7a (diff)
All File/Edit functions working, just need to add Search/About menu stuff
Diffstat (limited to 'c_fl_text_editor.h')
-rw-r--r--c_fl_text_editor.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/c_fl_text_editor.h b/c_fl_text_editor.h
index 7c7cee5..8c7dba0 100644
--- a/c_fl_text_editor.h
+++ b/c_fl_text_editor.h
@@ -11,10 +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);
+extern "C" void fl_text_editor_undo(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