Hosted by
 |
with Glyphs; use Glyphs;
package Fonts is
Family_Not_Found : exception;
Font_Not_Found : exception;
Glyph_Not_Found : exception;
function Load_Glyph
(Family : in String;
Font_Name : in String;
Glyph_Name : in String)
return Glyph;
end Fonts;
|