home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 309.lha / PBM_PLUS / pbm / x10wd.h < prev    next >
Text File  |  1980-12-04  |  952b  |  28 lines

  1. /* x10wd.h - the following defs are taken from various X10 header files
  2. */
  3.  
  4. #define XYFormat 0
  5. #define ZFormat 1
  6.  
  7. #define X10WD_FILE_VERSION 6
  8. typedef struct {
  9.     int header_size;        /* Size of the entire file header (bytes). */
  10.     int file_version;        /* X10WD_FILE_VERSION */
  11.     int display_type;        /* Display type. */
  12.     int display_planes;        /* Number of display planes. */
  13.     int pixmap_format;        /* Pixmap format. */
  14.     int pixmap_width;        /* Pixmap width. */
  15.     int pixmap_height;        /* Pixmap height. */
  16.     short window_width;        /* Window width. */
  17.     short window_height;    /* Window height. */
  18.     short window_x;        /* Window upper left X coordinate. */
  19.     short window_y;        /* Window upper left Y coordinate. */
  20.     short window_bdrwidth;    /* Window border width. */
  21.     short window_ncolors;    /* number of Color entries in this window */
  22.     } X10WDFileHeader;
  23.  
  24. typedef struct {
  25.     int pixel;
  26.     unsigned short red, green, blue;
  27.     } X10Color;
  28.