aboutsummaryrefslogtreecommitdiff
path: root/src/fltk_binding/fltk-callbacks.ads
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-07-19 22:40:37 +1000
committerJed Barber <jjbarber@y7mail.com>2016-07-19 22:40:37 +1000
commit21c86679217e38ecbd0ec933e006e508a1a42be1 (patch)
treee603734dfdc89e4605460ce76dab90d155aee810 /src/fltk_binding/fltk-callbacks.ads
parentd513fd809229d6d48bd061e494b08cafbbcc6f9c (diff)
Starting to sketch the outline of menu widgets and callbacks
Diffstat (limited to 'src/fltk_binding/fltk-callbacks.ads')
-rw-r--r--src/fltk_binding/fltk-callbacks.ads21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/fltk_binding/fltk-callbacks.ads b/src/fltk_binding/fltk-callbacks.ads
new file mode 100644
index 0000000..cc035ce
--- /dev/null
+++ b/src/fltk_binding/fltk-callbacks.ads
@@ -0,0 +1,21 @@
+
+
+package FLTK.Callbacks is
+
+
+ type Callback is private;
+
+
+ function Create
+ (Call : in access procedure)
+ return Callback;
+
+
+private
+
+
+ type Callback is null record;
+
+
+end FLTK.Callbacks;
+