ChipMaster's bwBASIC This also includes history going back to v2.10. *WARN* some binary files might have been corrupted by CRLF.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

40 lines
1.6 KiB

  1. /***************************************************************
  2. bwx_iqc.h Header File for IBM PC and Compatible
  3. Implementation of bwBASIC
  4. Using Microsoft QuickC (tm) Compiler
  5. Copyright (c) 1993, Ted A. Campbell
  6. Bywater Software
  7. email: tcamp@delphi.com
  8. Copyright and Permissions Information:
  9. All U.S. and international rights are claimed by the author,
  10. Ted A. Campbell.
  11. This software is released under the terms of the GNU General
  12. Public License (GPL), which is distributed with this software
  13. in the file "COPYING". The GPL specifies the terms under
  14. which users may copy and use the software in this distribution.
  15. A separate license is available for commercial distribution,
  16. for information on which you should contact the author.
  17. ***************************************************************/
  18. #define IMP_IDSTRING "IQC" /* unique ID string for this implementation */
  19. /* Definitions indicating which commands and functions are implemented */
  20. #define IMP_FNCINKEY 1 /* 0 if INKEY$ is not implemented, 1 if it is */
  21. #define IMP_CMDCLS 1 /* 0 if CLS is not implemented, 1 if it is */
  22. #define IMP_CMDLOC 1 /* 0 if LOCATE is not implemented, 1 if it is */
  23. #define IMP_CMDCOLOR 1 /* 0 if COLOR is not implemented, 1 if it is */
  24. #define UNIX_CMDS TRUE
  25. #define MKDIR_ONE_ARG TRUE /* TRUE if your mkdir has but one argument;
  26. FALSE if it has two */
  27. #define PERMISSIONS 493 /* permissions to set in Unix-type system */