home *** CD-ROM | disk | FTP | other *** search
/ C++ Games Programming / CPPGAMES.ISO / thx / source / utils / pcx.h < prev    next >
Text File  |  1994-09-27  |  322b  |  20 lines

  1. struct pcx_header
  2. {
  3.   char manufacturer,
  4.        version,
  5.        encoding,
  6.        BitsPerPixel;
  7.   int  x,
  8.        y,
  9.        width,
  10.        height,
  11.        HorzRes,
  12.        VertRes;
  13.   char palette[48],
  14.        reserved;
  15.   char NumOfColorPlanes;
  16.   int  BytesPerLine,
  17.        PaletteType;
  18.   char padding[58];
  19. };
  20.