aboutsummaryrefslogtreecommitdiff
path: root/src/c_fl_multiline_input.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_fl_multiline_input.h')
-rw-r--r--src/c_fl_multiline_input.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/c_fl_multiline_input.h b/src/c_fl_multiline_input.h
deleted file mode 100644
index ba4e723..0000000
--- a/src/c_fl_multiline_input.h
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-// Programmed by Jedidiah Barber
-// Released into the public domain
-
-
-#ifndef FL_MULTILINE_INPUT_GUARD
-#define FL_MULTILINE_INPUT_GUARD
-
-
-typedef void* MULTILINEINPUT;
-
-
-extern "C" MULTILINEINPUT new_fl_multiline_input(int x, int y, int w, int h, char* label);
-extern "C" void free_fl_multiline_input(MULTILINEINPUT i);
-
-
-extern "C" void fl_multiline_input_draw(MULTILINEINPUT i);
-extern "C" int fl_multiline_input_handle(MULTILINEINPUT i, int e);
-
-
-#endif
-
-