summaryrefslogtreecommitdiff
path: root/src/c_fl_box.h
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2017-05-01 12:49:40 +1000
committerJed Barber <jjbarber@y7mail.com>2017-05-01 12:49:40 +1000
commite9dc75679fcac3bf2024e47641941d0a5ef0899d (patch)
tree49081bd61ecf5aa074b3a59340d9e56eb3d0a2d2 /src/c_fl_box.h
parent9348c8013431bbd5de165d8fbac13b783d983324 (diff)
Draw method implemented for Boxes/Inputs
Diffstat (limited to 'src/c_fl_box.h')
-rw-r--r--src/c_fl_box.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/c_fl_box.h b/src/c_fl_box.h
index df7b629..d1b69b1 100644
--- a/src/c_fl_box.h
+++ b/src/c_fl_box.h
@@ -7,6 +7,9 @@
typedef void* BOX;
+extern "C" void box_set_draw_hook(BOX n, void * d);
+extern "C" void fl_box_draw(BOX n);
+
extern "C" BOX new_fl_box(int x, int y, int w, int h, char * label);
extern "C" void free_fl_box(BOX b);