home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / netpbma.zip / pbm / cmuwm.h < prev    next >
C/C++ Source or Header  |  1993-10-04  |  254b  |  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.