home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 609b.lha / MandelSquare_v1.3 / Source.LZH / Source / PlayAnim / readpict.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-01-06  |  419 b   |  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.