[BACK]Return to fep_glob.h CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / fep

Annotation of OpenXM_contrib2/fep/fep_glob.h, Revision 1.1

1.1     ! noro        1: /*     Copyright (c) 1987, 1988 by Software Research Associates, Inc.  */
        !             2:
        !             3: #ifndef lint
        !             4: # define FEP_GLOB \
        !             5:     "$Header: fep_glob.h,v 4.1 88/08/28 14:36:41 utashiro Exp $ (SRA)"
        !             6: #endif /* lint */
        !             7:
        !             8: extern FUNC    *curFuncTab;    /* function table */
        !             9: extern FUNC    *altFuncTab;    /* altanative function table */
        !            10: extern int     debug;          /* debug flag */
        !            11: extern char    *prompt;        /* prompt string */
        !            12: extern char    *delimiters;    /* delimiter characters */
        !            13: extern EDITMODE        editmode;       /* edit mode */
        !            14: extern FILE    *redirect_fp;   /* FILE pointer for I/O redirection */
        !            15: extern FILE    *script_fp;     /* FILE pointer for script */
        !            16: extern int     redirect_line;  /* number of line for redirecting */
        !            17: extern int     redirect_pid;   /* process id redirecting from */
        !            18: extern int     auto_tty_fix;   /* fix tty mode automatically */
        !            19: extern int     tty_fix_bell;   /* ring bell when tty mode is changed */
        !            20: extern int     Transparency;   /* transparent flag */
        !            21: extern int     Through;        /* through flag */
        !            22: extern EDITSTATUS   editstatus;        /* edit status */
        !            23: extern BUFFER  *output_buffer; /* output buffer */
        !            24:
        !            25: extern int     lines, columns; /* terminal sizes */
        !            26: extern char    *term_clear;    /* terminal clear code */
        !            27:
        !            28: /*
        !            29:  * tty control caracters.
        !            30:  * defined in fep_main.c
        !            31:  */
        !            32: #ifdef TERMIOS
        !            33: extern struct termios initial_ttymode;
        !            34: #elif defined(TIOCSETN)
        !            35: extern struct tchars tchars_buf;
        !            36: extern struct ltchars ltchars_buf;
        !            37: extern struct sgttyb initial_ttymode;
        !            38: #endif
        !            39:

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>