aboutsummaryrefslogtreecommitdiff
path: root/body/c_fl_box.cpp
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-04-13 18:48:34 +1200
committerJedidiah Barber <contact@jedbarber.id.au>2025-04-13 18:58:07 +1200
commitd80d210d6b1418ba3e773186337c5da7ea169c4e (patch)
tree6226c1c22f62e8dbde08f118147b82c034e6c1f5 /body/c_fl_box.cpp
parentfb4183c9244ee31aa5cb8bc9745c9242b1fafeeb (diff)
Proper init of Message_Icon box, some more checks added
Diffstat (limited to 'body/c_fl_box.cpp')
-rw-r--r--body/c_fl_box.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/body/c_fl_box.cpp b/body/c_fl_box.cpp
index 8bedec1..22ef21e 100644
--- a/body/c_fl_box.cpp
+++ b/body/c_fl_box.cpp
@@ -11,6 +11,16 @@
+// Telprot stopover
+
+extern "C" void box_extra_init_hook(void * aobj, int x, int y, int w, int h, const char * l);
+void fl_box_extra_init(void * adaobj, int x, int y, int w, int h, const char * label) {
+ box_extra_init_hook(adaobj, x, y, w, h, label);
+}
+
+
+
+
// Exports from Ada
extern "C" void widget_draw_hook(void * ud);