home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
files
/
505a.lha
/
GrapicsGems
/
AALines
/
utah.h
< prev
Wrap
C/C++ Source or Header
|
1991-05-01
|
877b
|
36 lines
/*
file: utah.h
description: interface to Utah RLE toolkit
author: A. T. Campbell
date: October 30, 1989
*/
#ifndef UTAH_H
#define UTAH_H
/******************************************************************************/
/* include files */
#include "svfb_global.h"
/******************************************************************************/
/* type definitions */
typedef struct sv_globals UTAH_FILE;
/******************************************************************************/
/* return values */
extern int utah_read_close();
extern UTAH_FILE *utah_read_init();
extern int utah_read_pixels();
extern int utah_read_rgb();
extern int utah_write_close();
extern UTAH_FILE *utah_write_init();
extern int utah_write_pixels();
extern int utah_write_rgb();
/******************************************************************************/
#endif UTAH_H