|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T X
Length: 1154 (0x482) Types: TextFile Names: »XWDFile.h«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─⟦526ad3590⟧ »EUUGD11/gnu-31mar87/X.V10.R4.tar.Z« └─⟦2109abc41⟧ └─⟦this⟧ »./X.V10R4/xwd/XWDFile.h«
#include <X/mit-copyright.h> /* Copyright 1985, 1986, Massachusetts Institute of Technology */ /* $Header: XWDFile.h,v 10.5 86/11/24 17:01:47 jg Rel $ */ /* * XWDFile.h MIT Project Athena, X Window system window raster * image dumper, dump file format header file. * * Author: Tony Della Fera, DEC * 27-Jun-85 * * Modifier: William F. Wyatt, SAO * 18-Nov-86 - version 6 for saving/restoring color maps */ #define XWD_FILE_VERSION 6 typedef struct _xwd_file_header { int header_size; /* Size of the entire file header (bytes). */ int file_version; /* XWD_FILE_VERSION */ int display_type; /* Display type. */ int display_planes; /* Number of display planes. */ int pixmap_format; /* Pixmap format. */ int pixmap_width; /* Pixmap width. */ int pixmap_height; /* Pixmap height. */ short window_width; /* Window width. */ short window_height; /* Window height. */ short window_x; /* Window upper left X coordinate. */ short window_y; /* Window upper left Y coordinate. */ short window_bdrwidth; /* Window border width. */ short window_ncolors; /* number of Color entries in this window */ } XWDFileHeader;