/*
 * Copyright (1987) Jeff Elman.  University of California, San Diego
 * This software may be redistributed without charge; this notice
 * should be preserved.
 */
/*
 * win.h
 *
 * per-window variables
 *
 */

#ifndef _XLIB_H_
#include <X11/Xlib.h>
#endif

struct win {
	Window w_win;
	XImage *w_image;
	GC w_gc;
	GC w_rev;
	int w_width;
	int w_height;
	char *w_data;
	int (*w_event)();
};
