home *** CD-ROM | disk | FTP | other *** search
- /* wfc_glob.h -- Global variables for Windows for C
-
- ************* Copyright 1985 by Vermont Creative Software **************
-
- DATE: April 2, 1987
- VERSION: v4.12
-
- COMMENT
-
- #includes att_glob.h which specifies default logical attributes.
-
- Defines several standard borders: a null border, a dotted border, a
- line border, a light (reverse) border, and a star border.
-
- A null border is indicated by a 0 (NULL) in ch_h (the second
- parameter in the BORDER list).
-
- Defines wn0, which is the basic 80 column screen without borders or
- word wrap and with scrolling with scr_q = 1.
-
- Initial declaration of cl_att, attribute variable used to clear
- window area by unset_wn() and cls(). Set to NORMAL.
-
- The definitions here assume the use of physical (not logical)
- attributes. When logical attributes are implemented (default case),
- init_wfc() will change the standard attributes assigned to the border
- structures, wn0, and cl_att to logical attributes. The logical
- attribute used is LNORMAL, except that cl_att and wn0 are set LDOS.
-
- Initial values are set for global variables.
-
- Reserves space for a permanent string buffer, v_sbuf[], used by video
- functions.
-
- Reserves space for a global error-code variable, _wn_err. This may be
- set by routines that experience errors so that higher level routines
- can know the cause of the error.
-
- CAUTION
-
- Place in main program following "wfc.h".
-
- Do not use v_sbuf[]. This must be reserved for internal use by video
- routines.
-
- To enable the debugging and traceback mode of Windows for C, you must
- #define the symbol WN_DEBUG before you #include wfc.h and wfc_glob.h.
- You then have to compile and link your main program. Enabling the
- debugging and traceback mode will cause the size of your executable
- file to increase by about 3000 - 6000 bytes.
-
-
- */
-
- /*----------------------------------------------------------------------------*/
- /* Only permit wfc_glob.h to be #included once */
- /*----------------------------------------------------------------------------*/
- #ifndef WFC_GLOBALS
-
- #define WFC_GLOBALS
-
- /*----------------------------------------------------------------------------*/
- /* Defines default logical attributes */
- /*----------------------------------------------------------------------------*/
- #include <att_glob.h>
-
- BORDER bdr_0 = {0};
- BORDER bdr_rev = {REVERSE,32,32,32,32,32,32};
- BORDER bdr_star = {NORMAL, '*', '*', '*', '*', '*', '*'};
-
- BORDER bdr_dot = {NORMAL,178,178,178,178,178,178};
- BORDER bdr_dln = {NORMAL,205,186,201,187,188,200};
- BORDER bdr_ln = {NORMAL,196,179,218,191,217,192} ;
-
-
- WINDOW wn0; /*initial values assigned during WFC */
- /*initialization routine */
-
- /*----------------------------------------------------------------------------*/
- /* The following are definitions for globally known variables. */
- /* Initial values are assigned here to avoid serious errors; but the correct */
- /* initial values are assigned by init_wfc(). */
- /* Initial values assigned here are for physical attributes. */
- /*----------------------------------------------------------------------------*/
- int cl_att = NORMAL; /* used by unset_wn() and cls() in */
- /* clearing windows */
- char v_mode = MONOMODE; /* current video mode */
- char tv_upd = 1; /* enable updating under TopView or */
- /* UNIX. For MSDOS systems, this */
- /* will be reset to zero if Topview is*/
- /* not present. User can set to zero */
- /* to manually inhibit all Topview */
- /* functions. */
- char tbf_msg = 1; /* controls if the "top of file" and */
- /* "bottom of file" messages are */
- /* displayed by v_mf(). */
- char v_contig = 1; /* adjacent lines on the display are */
- /* contiguous in physical video buffer*/
- int _wn_err; /* error code variable */
- int _vpstlen = VPSTMAXLEN; /* maximum length of buffer associated*/
- /* with v_printf() */
- int _wntabq = 8; /* Tab stops set every 8 columns */
- /* Used for tab expansion in v_st_rw()*/
- int _mnuchar = ON; /*controls if a menu item can be */
- /*selected by typing first character */
- PFI _wfckifp; /* pointer to keyboard loop function */
- char _csrvis; /* cursor visibility flag */
-
- /*----------------------------------------------------------------------------*/
- /* Global variables initialized for MSDOS Systems */
- /*----------------------------------------------------------------------------*/
- char v_sbuf[CO_QMAX * 2]; /* string buffer for video functions */
- char v_retr = 0; /* set by v_init(), depending on mode */
- char no_retr = 0; /* set to one to disable retrace */
- int _ibmega = 0; /* IBM EGA not present = 0; */
- int _ega_chk = 1; /* controls EGA check */
- /* = 1 Checks for EGA */
- /* = 0 Does not check for EGA */
- int v_coq = CO_QMAX; /* number of columns in screen display*/
- int v_rwq = RW_QSCRN; /* number of rows in screen display */
- int v_pbytes = BYTES_80; /* number of bytes in vrb page */
- ADDR v_vrb; /* address of video regen buffer -- */
- /* offset and segment */
- int _l_ptr = 0; /* = 1 if long pointers (large data) */
- unsigned int _d_seg = 0; /* data segment, set = 0 initially */
-
- /*----------------------------------------------------------------------------*/
- /* Global variables initialized for TERMINAL systems */
- /* Correct values for v_coq, v_rwq and v_pbytes will be set based upon the */
- /* WFCTERMCAP entry by init_wfc(). */
- /*----------------------------------------------------------------------------*/
-
- /*----------------------------------------------------------------------------*/
- /* Valid responses - used by both WFC and WFD routines to check for valid */
- /* responses from keyboard */
- /*----------------------------------------------------------------------------*/
- char wn_yes = 'y';
- char wn_no = 'n';
-
- /*----------------------------------------------------------------------------*/
- /* Global variables used in traceback debugging system. */
- /*----------------------------------------------------------------------------*/
- #ifdef WN_DEBUG
-
- extern int _push_tr(), _pop_tr();
- PFI _finitfp = _push_tr; /* pointer to function initialization */
- /* routine */
- PFI _fexitfp = _pop_tr; /* pointer to function exit routine */
- char *_wnlog[WNLOGSIZE]; /* call log - a circular list */
- int _wnlogq = WNLOGSIZE; /* size of call log list */
- int _wndebug = ON; /* let system know debugging is on */
- int _wntrq = TRACE_BUF; /* maximum size of traceback buffer */
-
- #else
-
- PFI _finitfp = NULLFP;
- PFI _fexitfp = NULLFP;
- char *_wnlog[1]; /* call log - a circular list */
- int _wnlogq = 1; /* size of call log list */
- int _wndebug = OFF; /* let system know debugging is off */
- int _wntrq = 0; /* no traceback buffer allocated */
-
- #endif
-
- #endif