1. -- 
  2. -- Copyright (c) 2013 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. with Interfaces;                        use Interfaces; 
  10.  
  11. -- Allegro 5.0.9 - Image I/O addon 
  12. package Allegro.Image_Addon is 
  13.  
  14.     function Al_Init_Image_Addon return Boolean; 
  15.  
  16.     procedure Al_Shutdown_Image_Addon; 
  17.     pragma Import( C, Al_Shutdown_Image_Addon, "al_shutdown_image_addon" ); 
  18.  
  19.     function Al_Get_Allegro_Image_Version return Unsigned_32; 
  20.     pragma Import( C, Al_Get_Allegro_Image_Version, "al_get_allegro_image_version" ); 
  21.  
  22. end Allegro.Image_Addon;