home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / fish / text / editors / dme_441 / src / globals.c < prev    next >
C/C++ Source or Header  |  1991-01-24  |  1KB  |  51 lines

  1.  
  2. /*
  3.  * GLOBALS.C
  4.  *
  5.  *    (C)Copyright 1987 by Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #include "defs.h"
  9.  
  10. Prototype MLIST     DBase;
  11. Prototype ED        *Ep;
  12. Prototype char        Overide;
  13. Prototype char        Savetabs;
  14. Prototype char        memoryfail, Nsu, Msgchk;
  15. Prototype ubyte     CtlC;
  16. Prototype ubyte     Current[256];
  17. Prototype ubyte     Deline[256];
  18. Prototype ubyte     Space[32];
  19. Prototype short     Clen;
  20. Prototype char        Abortcommand, MShowTitle;
  21. Prototype char        Comlinemode;
  22. Prototype char        *Partial;
  23. Prototype char        *String;
  24.  
  25. ED *Ep;         /* Current Window        */
  26. MLIST DBase;        /* Doubly linked list of Files    */
  27.  
  28. char    Nsu;        /* Used in formatter to disable screen updates    */
  29. char    Msgchk;     /* Force message queue check for break        */
  30. ubyte    CtlC;        /* Keycode for 'c'                              */
  31. char    Savetabs;    /* SaveTabs mode?                */
  32. char    memoryfail;    /* out of memory flag                */
  33. ubyte    Deline[256];    /* last deleted line                */
  34. ubyte    Current[256];    /* Current Line buffer and length        */
  35. ubyte    Space[32] = { 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
  36.             32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32 };
  37. short    Clen;
  38. char    *Partial;    /* Partial command line when executing ESCIMM    */
  39. char    *String;    /* String Capture variable            */
  40.  
  41. char    Comlinemode;
  42. char    Abortcommand;
  43.  
  44. long    BSline = -1;
  45. long    BEline = -1;
  46. short    BSchar;
  47. short    BEchar;
  48.  
  49. ED    *BEp;
  50.  
  51.