aboutsummaryrefslogtreecommitdiff
path: root/src/c_fl_output.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_fl_output.h')
-rw-r--r--src/c_fl_output.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/c_fl_output.h b/src/c_fl_output.h
deleted file mode 100644
index bb9bf96..0000000
--- a/src/c_fl_output.h
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-#ifndef FL_OUTPUT_GUARD
-#define FL_OUTPUT_GUARD
-
-
-
-
-// using just "OUTPUT" doesn't compile for some reason
-// some sort of name clash?
-typedef void* OUTPUTT;
-
-
-
-
-extern "C" void output_set_draw_hook(OUTPUTT i, void * d);
-extern "C" void fl_output_draw(OUTPUTT i);
-extern "C" void output_set_handle_hook(OUTPUTT i, void * h);
-extern "C" int fl_output_handle(OUTPUTT i, int e);
-
-
-
-
-extern "C" OUTPUTT new_fl_output(int x, int y, int w, int h, char* label);
-extern "C" void free_fl_output(OUTPUTT i);
-
-
-#endif
-