diff options
author | Jed Barber <jjbarber@y7mail.com> | 2016-05-24 02:25:30 +1000 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2016-05-24 02:25:30 +1000 |
commit | 63d9e14dd0cccb2191bd18ec07cfb11d06a30fcd (patch) | |
tree | ffbb851a35ecb0cdf6d5e7b261270e85d472bf2a /src/fltk_binding/c_fl_group.h |
It's a start
Diffstat (limited to 'src/fltk_binding/c_fl_group.h')
-rw-r--r-- | src/fltk_binding/c_fl_group.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/fltk_binding/c_fl_group.h b/src/fltk_binding/c_fl_group.h new file mode 100644 index 0000000..8fbd671 --- /dev/null +++ b/src/fltk_binding/c_fl_group.h @@ -0,0 +1,24 @@ + + +#ifndef FL_GROUP_GUARD +#define FL_GROUP_GUARD + + +typedef void* my_fl_group; + + +extern "C" my_fl_group new_fl_group(int x, int y, int w, int h, char * label); +extern "C" void free_fl_group(my_fl_group f); + +extern "C" void fl_group_end(my_fl_group f); + +extern "C" void fl_group_add(my_fl_group f, void * item); +extern "C" void fl_group_clear(my_fl_group f); +extern "C" int fl_group_find(my_fl_group f, void * item); +extern "C" void fl_group_insert(my_fl_group f, void * item, int place); +extern "C" void fl_group_remove(my_fl_group f, void * item); +extern "C" void fl_group_remove2(my_fl_group f, int place); + + +#endif + |