home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 505a.lha / GrapicsGems / AALines / utah.h < prev   
C/C++ Source or Header  |  1991-05-01  |  877b  |  36 lines

  1. /*
  2.     file:        utah.h
  3.     description:    interface to Utah RLE toolkit
  4.     author:        A. T. Campbell
  5.     date:        October 30, 1989
  6. */
  7.  
  8. #ifndef UTAH_H
  9. #define UTAH_H
  10.  
  11. /******************************************************************************/
  12.  
  13. /* include files */
  14. #include "svfb_global.h"
  15.  
  16. /******************************************************************************/
  17.  
  18. /* type definitions */
  19. typedef struct sv_globals UTAH_FILE;
  20.  
  21. /******************************************************************************/
  22.  
  23. /* return values */
  24. extern int        utah_read_close();
  25. extern UTAH_FILE    *utah_read_init();
  26. extern int        utah_read_pixels();
  27. extern int        utah_read_rgb();
  28. extern int        utah_write_close();
  29. extern UTAH_FILE    *utah_write_init();
  30. extern int        utah_write_pixels();
  31. extern int        utah_write_rgb();
  32.  
  33. /******************************************************************************/
  34.  
  35. #endif UTAH_H
  36.