home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / IRIT / IRITS.ZIP / IRIT-DOS.CFG < prev    next >
Encoding:
Text File  |  1990-05-05  |  1.5 KB  |  53 lines

  1. ;If the mouse autodetect fails, uncomment the following
  2. Mouse        TRUE        ;Mouse exists ? (boolean)
  3.  
  4. ;Graphic driver can be one of (Actually TurboC 2.0 graphic_driver constants):
  5. ; 0 - Autodetect (default, so you can delete this one...)
  6. ; 3 - EGA
  7. ; 4 - EGA64
  8. ; 5 - EGAMONO
  9. ; 7 - Hercules.
  10. ; 9 - VGA
  11. GraphDriver    0
  12.  
  13. ;The startup file - make it null string if none is needed. This file
  14. ;will be searched along the DOS PATH setup, starting from current directory.
  15. StartFile    "IritInit.irt"
  16.  
  17. ;Colors to objects loaded using LOAD command (if not specified in object
  18. ;itself), for boolean objects results, and primitive objects created.
  19. ;Color are supported only on EGA/VGA system as follows:
  20. ;
  21. ; BLACK         =  0
  22. ; BLUE         =  1
  23. ; GREEN         =  2
  24. ; CYAN         =  3
  25. ; RED         =  4
  26. ; MAGENTA      =  5
  27. ; BROWN         =  6
  28. ; LIGHTGRAY     =  7
  29. ; DARKGRAY     =  8
  30. ; LIGHTBLUE     =  9
  31. ; LIGHTGREEN     =  10
  32. ; LIGHTCYAN     =  11
  33. ; LIGHTRED     =  12
  34. ; LIGHTMAGENTA     =  13
  35. ; YELLOW     =  14
  36. ; WHITE         =  15
  37. ;
  38. LoadColor    1
  39. ICrvColor    14
  40. BoolColor    2
  41. PrimColor    4
  42.  
  43. ;Name of file to save LOGFILE comman output (if empty string NUL: is selected).
  44. LogFile        "irit.log"
  45.  
  46. ;Name of editor you want to execute from the program as a child process. This
  47. ;must be FULL path name for that file. only one parameter is supplied to it
  48. ;and that is the file name you want to edit as given to EDIT command.
  49. ;This better be a small and fast editor, as IRIT is a BIG program, and your
  50. ;'.irt' files are usually small...
  51. EditPrgm    "c:\util2\ted.com"             ;From PC Magazine...
  52. ;EditPrgm    "c:\util2\jove.exe"
  53.