home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / e / exc20.zip / EXC.V12 < prev    next >
Text File  |  1993-02-14  |  2KB  |  34 lines

  1. REVISIONS FOR VERSION 1.2 OF EXC.EXE
  2.  
  3. Many thanks to the few users who have reported problems and/or suggested
  4. enhancements.  If you don't report them and I don't find them, they don't 
  5. get fixed.
  6.  
  7. 1.  Timeout processing was malfunctioning for WAITSCR.  Fixed.
  8.  
  9. 2.  READ and LOOK were mistakenly included in v1.1 documentation, but are
  10.     not actually implemented until v1.2.
  11.  
  12. 3.  In 1.1 and older, the maximum screen size was 80x50.  EXC returned an
  13.     error if you were in a larger screen mode.  Also I had to obtain a 8,000
  14.     byte buffer (character + attribute) to read the 80x50 screen regardless
  15.     of the text mode you were using.
  16.  
  17.     I must preallocte the screen buffer because the spawned program may
  18.     consume all remaining memory.  I can't just use the current video
  19.     settings since the spawned program may change the text mode.
  20.  
  21.     I have added a command "SCRMAX cols rows" that allows preallocation of
  22.     buffers for large screen sizes.  The default, if SCRMAX is not in the
  23.     script, will be the rows and columns of the text mode in use when EXC is
  24.     invoked.  Please read the documentation under SCRMAX for full usage 
  25.     instructions and the implications and penalties involved in reserving 
  26.     large screen buffers.
  27.  
  28.     This prevents wasting memory in screen sizes smaller than 80x50 and
  29.     allows EXC to fully function on screens larger than 80x50.
  30.  
  31.     Supported screen widths are from 40-200 columns.  Supported screen
  32.     heights are from 20-100 rows.
  33.  
  34.