home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 505b.lha / Ham_e_library / RendStruct.h < prev    next >
C/C++ Source or Header  |  1991-05-05  |  641b  |  22 lines

  1. struct rgb_image {
  2.   /* User portion */
  3.     int xsize, ysize;                  /* fill these in before using*/
  4.     unsigned char *rbu, *bbu, *gbu;    /* fill in these too */
  5.  
  6.   /* Private portion */
  7.     int last_reg;                      /* leave all of the rest alone */
  8.     short *ooxmap, *ooymap;
  9.     UBYTE *CubeLookup;
  10.     UBYTE Palette24[(3*256)+4];
  11.     unsigned char reg_mem[256][3];
  12.     unsigned char reg_memx[256][3];
  13.     unsigned short *cspace;
  14.     struct HamePort *HamePort;
  15.     int u_r_here;
  16.  
  17.     long reserved0; /* Reserved for future use - must be set to zero */
  18.     long reserved1;
  19.     long reserved2;
  20.     long reserved3;
  21.   };
  22.