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 >
C/C++ Source or Header  |  1992-01-04  |  419b  |  25 lines

  1. #ifndef READPICT_H
  2. #define READPICT_H
  3. #ifndef ILBM_H
  4. #include "ilbm.h"
  5. #endif
  6.  
  7. #ifndef GRAPHICS_GFX_H
  8. #include <graphics/gfx.h>
  9. #endif
  10.  
  11. #define GetCAMG(context,camg) IFFReadBytes(context,(BYTE *)camg,sizeof(CamgChunk))
  12.  
  13. typedef struct
  14. {
  15.     ClientFrame    clientFrame;
  16.     UBYTE        foundBMHD;
  17.     BitMapHeader    bmHdr;
  18.     UBYTE        nColorRegs;
  19.     Color4        colorMap[32];
  20.     UBYTE        foundCAMG;
  21.     CamgChunk    camgChunk;
  22. } ILBMFrame;
  23.  
  24. #endif READPICT_H
  25.