diff options
author | Jed Barber <jjbarber@y7mail.com> | 2016-05-27 04:03:00 +1000 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2016-05-27 04:03:00 +1000 |
commit | 32062c660307d5b34f46b1f7b75d17a184930e71 (patch) | |
tree | 6ab33672207fdef5b500e5a0bfded5190f05e79e /fltk.ads | |
parent | 2aac034b614d6de39f4aee9f41dba8f2bcc63d8d (diff) |
Text buffers, access types and line lengths
Diffstat (limited to 'fltk.ads')
-rw-r--r-- | fltk.ads | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -1,10 +1,32 @@ +with Ada.Finalization; +private with System; + + package FLTK is function Run return Integer; + -- ugly implementation thing; never use this + -- just ignore the hand moving behind the curtain here + type Wrapper is abstract new Ada.Finalization.Limited_Controlled with private; + + +private + + + type Wrapper is abstract new Ada.Finalization.Limited_Controlled with + record + Void_Ptr : System.Address; + end record; + + + overriding procedure Initialize + (This : in out Wrapper); + + end FLTK; |