/*
 *	$Source$
 *	$Author$
 *	$Header$
 */

#define CWINDOW struct _cwindow

CWINDOW *COpen(), *CCreateWindow();

char	*malloc(), *strdup();

struct _cwindow {
	WINDOW	*w;
	WINDOW	*clip;		/* For clipping purposes for subwindows! */
	bool	_transparent;
	bool	mapped;
	bool	boxed;		/* True if window is boxed */
	CWINDOW	*child;
	CWINDOW	*nextsib;
	CWINDOW *prevsib;
	CWINDOW *parent;
	char	*name;
};
int	_C_autosync;

CWINDOW	*rootcw;

/*
 * Flags for CCreateWindow
 */
#define CBoxedWindow 1
