1. -- 
  2. -- Copyright (c) 2012 Kevin Wellwood 
  3. -- All rights reserved. 
  4. -- 
  5. -- This source code is distributed under the Modified BSD License. For terms and 
  6. -- conditions, see license.txt. 
  7. -- 
  8.  
  9. package Fonts.Manager is 
  10.  
  11.     -- Initializes the font system. A FONT_EXCEPTION will be raised on error. 
  12.     procedure Initialize; 
  13.  
  14.     -- Finalizes the font system. If Initialize has not been called, then this 
  15.     -- will have no effect. 
  16.     procedure Finalize; 
  17.  
  18. end Fonts.Manager;