home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
500-599
/
ff588.lza
/
MandelSquare
/
Source
/
PlayAnim
/
readpict.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-01-04
|
419b
|
25 lines
#ifndef READPICT_H
#define READPICT_H
#ifndef ILBM_H
#include "ilbm.h"
#endif
#ifndef GRAPHICS_GFX_H
#include <graphics/gfx.h>
#endif
#define GetCAMG(context,camg) IFFReadBytes(context,(BYTE *)camg,sizeof(CamgChunk))
typedef struct
{
ClientFrame clientFrame;
UBYTE foundBMHD;
BitMapHeader bmHdr;
UBYTE nColorRegs;
Color4 colorMap[32];
UBYTE foundCAMG;
CamgChunk camgChunk;
} ILBMFrame;
#endif READPICT_H