summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-buttons-light-check.adb
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2018-04-15 19:41:33 +1000
committerJed Barber <jjbarber@y7mail.com>2018-04-15 19:41:33 +1000
commita4b6a06f372923fb38ae4d3c7e0429ce93ea7748 (patch)
treee10bb89f38cdb7ad61b28fb1ab401765682da318 /src/fltk-widgets-buttons-light-check.adb
parent39d3db4cbdfa9d55c428bce9382166744406f936 (diff)
Started process of polishing packages
Diffstat (limited to 'src/fltk-widgets-buttons-light-check.adb')
-rw-r--r--src/fltk-widgets-buttons-light-check.adb6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/fltk-widgets-buttons-light-check.adb b/src/fltk-widgets-buttons-light-check.adb
index df54720..415a91b 100644
--- a/src/fltk-widgets-buttons-light-check.adb
+++ b/src/fltk-widgets-buttons-light-check.adb
@@ -16,10 +16,12 @@ package body FLTK.Widgets.Buttons.Light.Check is
procedure check_button_set_draw_hook
(W, D : in System.Address);
pragma Import (C, check_button_set_draw_hook, "check_button_set_draw_hook");
+ pragma Inline (check_button_set_draw_hook);
procedure check_button_set_handle_hook
(W, H : in System.Address);
pragma Import (C, check_button_set_handle_hook, "check_button_set_handle_hook");
+ pragma Inline (check_button_set_handle_hook);
@@ -29,10 +31,12 @@ package body FLTK.Widgets.Buttons.Light.Check is
Text : in Interfaces.C.char_array)
return System.Address;
pragma Import (C, new_fl_check_button, "new_fl_check_button");
+ pragma Inline (new_fl_check_button);
procedure free_fl_check_button
(B : in System.Address);
pragma Import (C, free_fl_check_button, "free_fl_check_button");
+ pragma Inline (free_fl_check_button);
@@ -40,12 +44,14 @@ package body FLTK.Widgets.Buttons.Light.Check is
procedure fl_check_button_draw
(W : in System.Address);
pragma Import (C, fl_check_button_draw, "fl_check_button_draw");
+ pragma Inline (fl_check_button_draw);
function fl_check_button_handle
(W : in System.Address;
E : in Interfaces.C.int)
return Interfaces.C.int;
pragma Import (C, fl_check_button_handle, "fl_check_button_handle");
+ pragma Inline (fl_check_button_handle);