summaryrefslogtreecommitdiff
path: root/fltk-callbacks.adb
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
commitab25b51036a810c326b51a230700971c0f431f74 (patch)
tree15022810b1045502d66b1aaebe7911b4968a907a /fltk-callbacks.adb
parent6aa9475d598065081866913bb86a049a6d2d0c1a (diff)
Starting to sketch the outline of menu widgets and callbacks
Diffstat (limited to 'fltk-callbacks.adb')
-rw-r--r--fltk-callbacks.adb15
1 files changed, 15 insertions, 0 deletions
diff --git a/fltk-callbacks.adb b/fltk-callbacks.adb
new file mode 100644
index 0000000..717888d
--- /dev/null
+++ b/fltk-callbacks.adb
@@ -0,0 +1,15 @@
+
+
+package body FLTK.Callbacks is
+
+
+ function Create
+ (Call : in access procedure)
+ return Callback is
+ begin
+ return null record;
+ end Create;
+
+
+end FLTK.Callbacks;
+