home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / utilities / utilsm / netpbmsca / pbm / h / cmuwm < prev    next >
Encoding:
Text File  |  1993-10-04  |  254 b   |  18 lines

  1. /* cmuwm.h - definitions for the CMU window manager format
  2. */
  3.  
  4. #ifndef _CMUWM_H_
  5. #define _CMUWM_H_
  6.  
  7. struct cmuwm_header
  8.     {
  9.     long magic;
  10.     long width;
  11.     long height;
  12.     short depth;
  13.     };
  14.  
  15. #define CMUWM_MAGIC 0xf10040bbL
  16.  
  17. #endif /*_CMUWM_H_*/
  18.