home *** CD-ROM | disk | FTP | other *** search
/ HyperLib 1997 Winter - Disc 1 / HYPERLIB-1997-Winter-CD1.ISO.7z / HYPERLIB-1997-Winter-CD1.ISO / オンラインウェア / PRG / bwbasic-2.10.sit / bwbasic-2.10 / bwx_tty.h < prev    next >
Text File  |  1993-11-09  |  2KB  |  43 lines

  1. /***************************************************************
  2.  
  3.         bwx_tty.h       Header file for TTY-style hardware
  4.             implementation of bwBASIC
  5.  
  6.             This file may be used as a template
  7.             for developing more sophisticated
  8.             hardware implementations
  9.  
  10.                         Copyright (c) 1993, Ted A. Campbell
  11.             Bywater Software
  12.  
  13.                         email: tcamp@delphi.com
  14.  
  15.         Copyright and Permissions Information:
  16.  
  17.         All U.S. and international rights are claimed by the author,
  18.         Ted A. Campbell.
  19.  
  20.     This software is released under the terms of the GNU General
  21.     Public License (GPL), which is distributed with this software
  22.     in the file "COPYING".  The GPL specifies the terms under
  23.     which users may copy and use the software in this distribution.
  24.  
  25.     A separate license is available for commercial distribution,
  26.     for information on which you should contact the author.
  27.  
  28. ***************************************************************/
  29.  
  30. #define IMP_IDSTRING    "TTY"           /* unique ID string for this implementation */
  31.  
  32. /* Definitions indicating which commands and functions are implemented */
  33.  
  34. #define IMP_FNCINKEY    0        /* 0 if INKEY$ is not implemented, 1 if it is */
  35. #define IMP_CMDCLS    0        /* 0 if CLS is not implemented, 1 if it is */
  36. #define IMP_CMDLOC    0        /* 0 if LOCATE is not implemented, 1 if it is */
  37. #define IMP_CMDCOLOR    0               /* 0 if COLOR is not implemented, 1 if it is */
  38.  
  39. #define UNIX_CMDS       FALSE
  40. #define MKDIR_ONE_ARG   FALSE           /* TRUE if your mkdir has but one argument;
  41.                        FALSE if it has two */
  42. #define PERMISSIONS    493        /* permissions to set in Unix-type system */
  43.