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 {
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: } ;
Defined struct's
defined in line
16;
never used
Defined typedef's
defined in line
30; used 3 times
Defined macros
Usage of this include