home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / xloadimg.zip / xloadimage.4.1 / cmuwmraster.h < prev    next >
C/C++ Source or Header  |  1993-10-21  |  314b  |  18 lines

  1. /* cmuwmraster.h
  2.  *
  3.  * this describes the header for ITC (CMU WM) raster files. It is
  4.  * essentially a byte reversed Sun raster, 1 plane, no encoding.
  5.  */
  6.  
  7. #include "copyright.h"
  8.  
  9. struct cmuwm_header
  10. {
  11.     byte magic[4];
  12.     byte width[4];
  13.     byte height[4];
  14.     byte depth[2];
  15. };
  16.  
  17. #define CMUWM_MAGIC 0xf10040bb
  18.