blob: 373a3a8d1446ec13a9f9cb223852b5b02753847c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
-- Programmed by Jedidiah Barber
-- Released into the public domain
limited with
FLTK.Static;
private package FLTK.Box_Draw_Marshal is
function To_Ada
(Kind : in Box_Kind;
Ptr : in Storage.Integer_Address)
return FLTK.Static.Box_Draw_Function;
function To_C
(Kind : in Box_Kind;
Func : in FLTK.Static.Box_Draw_Function)
return Storage.Integer_Address;
end FLTK.Box_Draw_Marshal;
|