summaryrefslogtreecommitdiff
path: root/src/c_fl_group.h
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2017-05-01 22:56:51 +1000
committerJed Barber <jjbarber@y7mail.com>2017-05-01 22:56:51 +1000
commitfbdef14a42388934067427854b6f5559bef31e8d (patch)
treea6d8cd4df18aaeb8b5293e60d0c0120abbcd035c /src/c_fl_group.h
parent727cd771facf506910ddbb63532b3b6af7fb1b77 (diff)
Draw method implemented for Groups, Menus, although Menus are now no longer abstract even though they should be
Diffstat (limited to 'src/c_fl_group.h')
-rw-r--r--src/c_fl_group.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/c_fl_group.h b/src/c_fl_group.h
index 9b58f8c..b2db787 100644
--- a/src/c_fl_group.h
+++ b/src/c_fl_group.h
@@ -9,6 +9,9 @@
typedef void* GROUP;
+extern "C" void group_set_draw_hook(GROUP g, void * d);
+extern "C" void fl_group_draw(GROUP g);
+
extern "C" GROUP new_fl_group(int x, int y, int w, int h, char* label);
extern "C" void free_fl_group(GROUP g);