aboutsummaryrefslogtreecommitdiff
path: root/src/fltk_binding/c_fl_text_buffer.h
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-05-27 04:03:00 +1000
committerJed Barber <jjbarber@y7mail.com>2016-05-27 04:03:00 +1000
commitb1a8b46960380dc3a771935a09c4e4a23e811c4a (patch)
tree25d2693835dc3410165e19670b16a0c50a51ef4b /src/fltk_binding/c_fl_text_buffer.h
parent2b4468a62a55d9f8520582f9aa2e420ab89ed7bd (diff)
Text buffers, access types and line lengths
Diffstat (limited to 'src/fltk_binding/c_fl_text_buffer.h')
-rw-r--r--src/fltk_binding/c_fl_text_buffer.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/fltk_binding/c_fl_text_buffer.h b/src/fltk_binding/c_fl_text_buffer.h
new file mode 100644
index 0000000..23daa03
--- /dev/null
+++ b/src/fltk_binding/c_fl_text_buffer.h
@@ -0,0 +1,15 @@
+
+
+#ifndef FL_TEXT_BUFFER_GUARD
+#define FL_TEXT_BUFFER_GUARD
+
+
+typedef void* TEXTBUFFER;
+
+
+extern "C" TEXTBUFFER new_fl_text_buffer(int rs, int pgs);
+extern "C" void free_fl_text_buffer(TEXTBUFFER tb);
+
+
+#endif
+