home *** CD-ROM | disk | FTP | other *** search
/ Current Shareware 1994 January / SHAR194.ISO / menuing / fs101.zip / FS101.DAT / FS_SAMP.INI next >
INI File  |  1993-05-24  |  4KB  |  183 lines

  1. ; FS.INI for FS.EXE in English mode.
  2. ;
  3. ;    This is a comment line.
  4. ;    The semicolon must be at the head of the line.
  5. ;  Carriage Return([Enter]) is the separator of the each section.
  6. ;  So there must be carriage return at the end of the each section.
  7. ;
  8. [RAM-disk]
  9. d:
  10.  
  11. [Text Editor]
  12. ;path+command
  13. c:\word\b -t8 -k0 -N -b
  14. ; for BOXER (shareware)
  15.  
  16. [Extractor]
  17. ;extension (upper case),path+command
  18. .ZIP,c:\arc\pkunzip
  19. .LZH,c:\arc\lha x
  20. .ARJ,c:\arc\arj x
  21. .ARC,c:\arc\arce
  22. .ZOO,c:\arc\zoo x
  23.  
  24. [Compressor]
  25. ;extension (upper case),path+command
  26. .ZIP,c:\arc\pkzip
  27. .LZH,c:\arc\lha a
  28. .ARJ,c:\arc\arj a -e -jm 
  29.  
  30. [Updater]
  31. ;extension (upper case),path+command
  32. .ZIP,c:\arc\pkzip -u
  33. .LZH,c:\arc\lha u
  34. .ARJ,c:\arc\arj u -e -jm
  35.  
  36. [Viewer and Player]
  37. ;extension (upper case),path,command  or  extension,path+command
  38. ; If you need change directories to execute the command,
  39. ;  you must write a comma between the path and the command.
  40. .BIF,c:\graphic\,vpic
  41. .GIF,c:\graphic\,vpic
  42. .BMP,c:\graphic\,vpic
  43. .LBM,c:\graphic\,vpic
  44. .PIC,c:\graphic\,vpic
  45. .PCX,c:\graphic\,vpic
  46. .CUT,c:\graphic\,vpic
  47. .TGA,c:\graphic\,vpic
  48. .MAC,c:\graphic\,vpic
  49. ; VPIC.EXE is a shareware by Bob Montgomery.
  50. .WAV,c:\audio\play
  51. .VOC,c:\audio\play
  52. ; PLAY.EXE was made by MEDIA VISION.
  53. .CMF,c:\audio\mv -M
  54. .ROL,c:\audio\uti\,sputrol
  55.  
  56. [Alt]
  57. ; You can use numbers from 1 to 9 and alphabets from A to Z  for the titles.
  58. ; You must write a space between a period and the title,
  59. ;  and the title must not be greater then 35 letters.
  60. ;
  61. ; You must specify the drive and directory at the beginning of the commands,
  62. ;  because the current directory will be "c:\" or "[RAM-disk]:\".
  63. ; You can use all the commands that you can in Batch file.
  64. ;
  65. 1. Make fs.exe
  66. c:
  67. cd\basic
  68. qb fs.bas /L fsub.qlb
  69. cd\basic
  70. bc fs.bas /T/AH/E/O;
  71. link /E /NOE FS+FSUB+fs_sub,FS.EXE,,BCOM45.LIB+QB.LIB
  72. DEL *.MAP
  73. del fs.obj
  74. copy c:\basic\fs.exe c:\uti\fs.exe
  75. smartdrv /C
  76. pause
  77.  
  78. 2. Make fs.exe with fsub.a86
  79. c:
  80. cd\basic
  81. c:\asm\a86 +O fsub.a86
  82. link /Q fsub.obj+fs_sub.obj,,,bqlb45.lib
  83. qb fs.bas /L fsub.qlb
  84. cd\basic
  85. bc fs.bas /T/AH/E/O;
  86. link /E /NOE FS+FSUB+fs_sub,FS.EXE,,BCOM45.LIB+QB.LIB
  87. DEL *.SYM
  88. DEL *.MAP
  89. del fs.obj
  90. copy c:\basic\fs.exe c:\uti\fs.exe
  91. smartdrv /C
  92. pause
  93.  
  94. 3. Make fs.exe with fs_sub.obj
  95. c:
  96. cd\basic
  97. bc fs_sub.bas /AH/O;
  98. pause
  99. link /Q fsub.obj+fs_sub.obj,,,bqlb45.lib
  100. bc fs.bas /T/AH/E/O;
  101. link /E /NOE FS+FSUB+fs_sub,FS.EXE,,BCOM45.LIB+QB.LIB
  102. DEL *.MAP
  103. del fs.obj
  104. copy c:\basic\fs.exe c:\uti\fs.exe
  105. smartdrv /C
  106. pause
  107.  
  108. 4.
  109. 5.
  110. 6.
  111. 7.
  112. 8.
  113. 9.
  114. A. Assemble
  115. rem +O for outputting a OBJ file
  116. c:\asm\a86 %1
  117.  
  118. B. BASIC
  119. c:
  120. cd\basic
  121. qb %1
  122.  
  123. C. Communication
  124. D. Data-base
  125. E.
  126. F. Finance
  127. G.
  128. H.
  129. I.
  130. J. Japanese mode.
  131. ; This command is included in IBM-DOS/V only.
  132. chev jp /f
  133.  
  134. K.
  135. L.
  136. M. Menu Program
  137. ; The following commands are for WYND SHELL (share ware). 
  138. c:
  139. cd\uti
  140. copy wshell.org wshell.bat
  141. call wshell
  142.  
  143. N. No operation = Initialize FS.EXE.
  144.  
  145.  
  146. O.
  147. P. PASCAL
  148. Q.
  149. R. Reset to the Japanese mode
  150. copy c:\initfile\config.jpn c:\config.sys
  151. copy c:\initfile\autoexec.jpn c:\autoexec.bat
  152. ; Smartdrv.exe is in WINDOWS 3.1.
  153. ; If you use the write-back cache,
  154. ;  you must write the buffer data into the disk.
  155. smartdrv /C
  156. ; I made reset.com from IBM's hardboot.com.
  157. ; If you have IBM-DOS/V, you can use "c:\dos\hardboot".
  158. c:\asm\reset
  159.  
  160. S. Scheduler
  161. ; The following commands are for Early Bird (share ware).
  162. c:
  163. cd\day
  164. eb
  165.  
  166. T. Text Editor
  167. c:\word\b -t8 -k0 -N -b %1
  168.  
  169. U.
  170. V.
  171. W. Word Processor
  172. c:
  173. cd\word
  174. wp
  175.  
  176. X.
  177. Y.
  178. Z. WINDOWS
  179. c:
  180. cd\windows
  181. win
  182.  
  183.