summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-buttons-light-round.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-round.adb
parent39d3db4cbdfa9d55c428bce9382166744406f936 (diff)
Started process of polishing packages
Diffstat (limited to 'src/fltk-widgets-buttons-light-round.adb')
-rw-r--r--src/fltk-widgets-buttons-light-round.adb6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/fltk-widgets-buttons-light-round.adb b/src/fltk-widgets-buttons-light-round.adb
index 3287308..dd3fa29 100644
--- a/src/fltk-widgets-buttons-light-round.adb
+++ b/src/fltk-widgets-buttons-light-round.adb
@@ -16,10 +16,12 @@ package body FLTK.Widgets.Buttons.Light.Round is
procedure round_button_set_draw_hook
(W, D : in System.Address);
pragma Import (C, round_button_set_draw_hook, "round_button_set_draw_hook");
+ pragma Inline (round_button_set_draw_hook);
procedure round_button_set_handle_hook
(W, H : in System.Address);
pragma Import (C, round_button_set_handle_hook, "round_button_set_handle_hook");
+ pragma Inline (round_button_set_handle_hook);
@@ -29,10 +31,12 @@ package body FLTK.Widgets.Buttons.Light.Round is
Text : in Interfaces.C.char_array)
return System.Address;
pragma Import (C, new_fl_round_button, "new_fl_round_button");
+ pragma Inline (new_fl_round_button);
procedure free_fl_round_button
(B : in System.Address);
pragma Import (C, free_fl_round_button, "free_fl_round_button");
+ pragma Inline (free_fl_round_button);
@@ -40,12 +44,14 @@ package body FLTK.Widgets.Buttons.Light.Round is
procedure fl_round_button_draw
(W : in System.Address);
pragma Import (C, fl_round_button_draw, "fl_round_button_draw");
+ pragma Inline (fl_round_button_draw);
function fl_round_button_handle
(W : in System.Address;
E : in Interfaces.C.int)
return Interfaces.C.int;
pragma Import (C, fl_round_button_handle, "fl_round_button_handle");
+ pragma Inline (fl_round_button_handle);