summaryrefslogtreecommitdiff
path: root/fltk.adb
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-05-27 04:03:00 +1000
committerJed Barber <jjbarber@y7mail.com>2016-05-27 04:03:00 +1000
commit32062c660307d5b34f46b1f7b75d17a184930e71 (patch)
tree6ab33672207fdef5b500e5a0bfded5190f05e79e /fltk.adb
parent2aac034b614d6de39f4aee9f41dba8f2bcc63d8d (diff)
Text buffers, access types and line lengths
Diffstat (limited to 'fltk.adb')
-rw-r--r--fltk.adb12
1 files changed, 12 insertions, 0 deletions
diff --git a/fltk.adb b/fltk.adb
index 674a54a..cc2d407 100644
--- a/fltk.adb
+++ b/fltk.adb
@@ -1,6 +1,7 @@
with Interfaces.C;
+with System;
package body FLTK is
@@ -10,11 +11,22 @@ package body FLTK is
pragma Import (C, fl_run, "fl_run");
+
+
function Run return Integer is
begin
return Integer (fl_run);
end Run;
+
+
+ procedure Initialize
+ (This : in out Wrapper) is
+ begin
+ This.Void_Ptr := System.Null_Address;
+ end Initialize;
+
+
end FLTK;