/* * Copyright (c) 1983, 1993 * The Regents of the University of California. All rights reserved. * * This code is derived from software contributed to Berkeley by * Edward Wang at The University of California, Berkeley. * * %sccs.include.redist.c% * * @(#)defs.h 8.1 (Berkeley) 06/06/93 */ #include "ww.h" #include #define NWINDOW 9 struct timeval starttime; struct ww *window[NWINDOW]; /* the windows */ struct ww *selwin; /* the selected window */ struct ww *lastselwin; /* the last selected window */ struct ww *cmdwin; /* the command window */ struct ww *framewin; /* the window for framing */ struct ww *boxwin; /* the window for the box */ struct ww *fgwin; /* the last foreground window */ #define isfg(w) ((w)->ww_order <= fgwin->ww_order) char *default_shell[128]; /* default shell argv */ char *default_shellfile; /* default shell program */ int default_nline; /* default buffer size for new windows */ int default_smooth; /* default "smooth" parameter */ char escapec; /* the escape character */ /* flags */ char quit; /* quit command issued */ char terse; /* terse mode */ char debug; /* debug mode */ char incmd; /* in command mode */ struct ww *getwin(); struct ww *openwin(); struct ww *vtowin(); struct ww *openiwin();