#ifndef ILBMPACKER_H
#define ILBMPACKER_H
/*----------------------------------------------------------------------*
 * ILBMPACKER.H  typedefs for Data-Compresser.  		 1/22/86
 *
 * This module implements the run compression algorithm "cmpByteRun1"; the
 * same encoding generated by Mac's PackBits.
 *
 * By Jerry Morrison and Steve Shaw, Electronic Arts.
 * This software is in the public domain.
 *
 * This version for the Commodore-Amiga computer.
 *----------------------------------------------------------------------*/

/* This macro computes the worst case packed size of a "row" of bytes. */
#define MaxPackedSize(rowSize)  ( (rowSize) + ( ((rowSize)+127) >> 7 ) )

long PackRow(unsigned char *,unsigned char *,long);

#endif

