summaryrefslogtreecommitdiff
path: root/src/fltk_binding/c_fl_group.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk_binding/c_fl_group.h')
-rw-r--r--src/fltk_binding/c_fl_group.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/fltk_binding/c_fl_group.h b/src/fltk_binding/c_fl_group.h
deleted file mode 100644
index 9b58f8c..0000000
--- a/src/fltk_binding/c_fl_group.h
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-#ifndef FL_GROUP_GUARD
-#define FL_GROUP_GUARD
-
-#include "c_fl_widget.h"
-
-
-typedef void* GROUP;
-
-
-extern "C" GROUP new_fl_group(int x, int y, int w, int h, char* label);
-extern "C" void free_fl_group(GROUP g);
-
-extern "C" void fl_group_end(GROUP g);
-
-extern "C" void fl_group_add(GROUP g, WIDGET item);
-extern "C" int fl_group_find(GROUP g, WIDGET item);
-extern "C" void fl_group_insert(GROUP g, WIDGET item, int place);
-extern "C" void fl_group_remove(GROUP g, WIDGET item);
-extern "C" void fl_group_remove2(GROUP g, int place);
-extern "C" void fl_group_resizable(GROUP g, WIDGET item);
-
-extern "C" int fl_group_children(GROUP g);
-extern "C" void * fl_group_child(GROUP g, int place);
-
-
-#endif
-