summaryrefslogtreecommitdiff
path: root/c_fl_group.h
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2017-04-27 10:40:48 +1000
committerJed Barber <jjbarber@y7mail.com>2017-04-27 10:40:48 +1000
commit0d842f0423ba0754fb3675c7468397a8da5f6e1b (patch)
treed5da172bc7af2f7f48a3415eceac67ed67542787 /c_fl_group.h
parent5d88963cd203f30b79433e34e5c89bfcf8abfe60 (diff)
Organising source
Diffstat (limited to 'c_fl_group.h')
-rw-r--r--c_fl_group.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/c_fl_group.h b/c_fl_group.h
deleted file mode 100644
index 9b58f8c..0000000
--- a/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
-