1: #include <X/mit-copyright.h>
   2: 
   3: /* Copyright 1985, Massachusetts Institute of Technology */
   4: 
   5: /* $Header: XWDFile.h,v 10.3 86/02/01 16:07:50 tony Rel $ */
   6: /*
   7:  * XWDFile.h	MIT Project Athena, X Window system window raster
   8:  *		image dumper, dump file format header file.
   9:  *
  10:  *  Author:	Tony Della Fera, DEC
  11:  *		27-Jun-85
  12:  */
  13: 
  14: #define XWD_FILE_VERSION 5
  15: 
  16: typedef struct _xwd_file_header {
  17:     int header_size;    /* Size of the entire file header (bytes). */
  18:     int file_version;   /* XWD_FILE_VERSION */
  19:     int display_type;   /* Display type. */
  20:     int display_planes; /* Number of display planes. */
  21:     int pixmap_format;  /* Pixmap format. */
  22:     int pixmap_width;   /* Pixmap width. */
  23:     int pixmap_height;  /* Pixmap height. */
  24:     short window_width; /* Window width. */
  25:     short window_height;    /* Window height. */
  26:     short window_x;     /* Window upper left X coordinate. */
  27:     short window_y;     /* Window upper left Y coordinate. */
  28:     short window_bdrwidth;  /* Window border width. */
  29:     short padding;      /* Long word alignment padding. */
  30: } XWDFileHeader;

Defined struct's

_xwd_file_header defined in line 16; never used

Defined typedef's

Defined macros

XWD_FILE_VERSION defined in line 14; used 2 times

Usage of this include

Last modified: 1986-02-01
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 814
Valid CSS Valid XHTML 1.0 Strict