home *** CD-ROM | disk | FTP | other *** search
/ AP Professional Graphics CD-ROM Library / AP Professional Graphics CD-ROM Library.iso / pc / unix / appendix / gemsi / aalines / utah.h < prev   
Encoding:
C/C++ Source or Header  |  1992-09-15  |  859 b   |  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 "rle.h"
  15.  
  16. /******************************************************************************/
  17.  
  18. /* type definitions */
  19. typedef rle_hdr 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.