home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / CPM / ZCPR33 / S-Z / ZCPR33.LBR / Z33HDR5.LZB / Z33HDR5.LIB
Text File  |  2000-06-30  |  3KB  |  224 lines

  1.  
  2. ; Z33HDR.LIB --- Condensed Form
  3.  
  4. ; This configuration is for an open system with SUBMIT facilities enabled
  5. ; but no named directory support.
  6.  
  7. ; Basic definitions
  8.  
  9. no    equ    0
  10. yes    equ    not no
  11. off    equ    no
  12. on    equ    yes
  13.  
  14. rel    equ    no
  15.  
  16. ;--------------------
  17.  
  18. diron    equ    no
  19. eraon    equ    no
  20. geton    equ    yes
  21. goon    equ    yes
  22. jumpon    equ    yes
  23. lton    equ    no
  24. noteon    equ    no
  25. renon    equ    yes
  26. saveon    equ    yes
  27.  
  28. ;--------------------
  29.  
  30. wdir    equ    no
  31. wera    equ    no
  32. wget    equ    no
  33. wgo    equ    no
  34. wjump    equ    no
  35. wren    equ    no
  36. wsave    equ    no
  37. wlt    equ    no
  38.  
  39. ;--------------------
  40.  
  41. cmdsize    equ    4
  42.  
  43. ctable    macro
  44.     command        DIR,    diron,    wdir,    dir
  45.     command        ERA,    eraon,    wera,    era
  46.     command        GET,    geton,    wget,    get
  47.     command        GO,    goon,    wgo,    go
  48.     command        JUMP,    jumpon,    wjump,    jump
  49.     command        LIST,    lton,    wlt,    list
  50.     command        NOTE,    noteon,    false,    note
  51.     command        REN,    renon,    wren,    ren
  52.     command        SAVE,    saveon,    wsave,    save
  53.     command        TYPE,    lton,    wlt,    type
  54.     endm
  55.  
  56. ;--------------------
  57.  
  58. ; DIR command options
  59.  
  60. wide    equ    yes
  61. fence    equ    '|'
  62. allchar    equ    'A'
  63. syschar    equ    'S'
  64. slashfl equ    yes
  65. whldir    equ    yes
  66.  
  67. whldir    defl    whldir and diron    ; Do not change
  68.  
  69. ;--------------------
  70.  
  71. ; ERA command options
  72.  
  73. eraok    equ    on
  74. inspfl    equ    on
  75. inspch    equ    ' '
  76.  
  77. ;--------------------
  78.  
  79. ; GET command options
  80.  
  81. fullget    equ    yes
  82.  
  83. ;--------------------
  84.  
  85. ; SAVE command options
  86.  
  87. sectch    equ    ' '
  88. bellfl    equ    yes
  89.  
  90. ;--------------------
  91.  
  92. ; TYPE command options
  93.  
  94. pagefl    equ    yes
  95. pagech    equ    'P'
  96.  
  97. ;--------------------
  98.  
  99. ; Environment access
  100.  
  101. duenv        equ    no
  102. aduenv        equ    no
  103. inclenv        equ    no
  104. fcpenv        equ    yes
  105. rcpenv        equ    yes
  106. ndrenv        equ    yes
  107.  
  108. ;--------------------
  109.  
  110. ; Transient programs
  111.  
  112. comtyp    macro
  113.     db    'COM'
  114.     endm
  115.  
  116. attchk    equ    no
  117. comatt    equ    0
  118.  
  119. ;--------------------
  120.  
  121. ; SUBMIT facility
  122.  
  123. subon    equ    yes
  124. subnoise equ    0        ; 0 (off), 1 (quiet flag), 2 (on)
  125. subclue    equ    no
  126. sprmpt    equ    ']'
  127.  
  128. subtyp    macro
  129.     db    'SUB'
  130.     endm
  131.  
  132. subdrv    equ    'A'        ; WARNING: risky if changed from A
  133.  
  134. ;--------------------
  135.  
  136. ; Path options
  137.  
  138. drvprefix    equ    yes
  139. scancur        equ    no
  140.  
  141. extmpath    equ    no
  142. extmpathadr    equ    0    ; Needed only if elements in path > 10
  143.  
  144.      if    [ expaths le 10 ]
  145. extmpath    defl    yes
  146. extmpathadr    defl    extstk
  147.      endif
  148.  
  149. ;--------------------
  150.  
  151. ; Directory reference forms
  152.  
  153. accptdu        equ    yes
  154. accptdir     equ    no
  155. dufirst        equ    no
  156.  
  157. incldu        equ    yes
  158. incldir        equ    no
  159.  
  160. incldir        defl    incldir and [z3ndir ne 0]    ; Do not change
  161. accptdir    defl    accptdir and [z3ndir ne 0]    ; Do not change
  162.  
  163. ;--------------------
  164.  
  165. ; Security matters
  166.  
  167. pwcheck    equ    no
  168. pwnoecho equ    no
  169. wdu    equ    no
  170. wpass    equ    no
  171. wprefix equ    no
  172.  
  173. pwcheck    defl    pwcheck and [ z3ndir ne 0 ]        ; Do not change
  174. pwnoecho defl    pwnoecho and pwcheck            ; Do not change
  175.  
  176. ;--------------------
  177.  
  178. ; Advanced command processing options
  179.  
  180. highuser    equ    no
  181. skippath    equ    yes
  182. fastecp        equ    yes
  183. altspace    equ    yes
  184. altonly        equ    no
  185. ecpchar        equ    '/'
  186. altcolon    equ    yes
  187. altchar        equ    '.'
  188. badduecp    equ    yes
  189. shellif        equ    no
  190.  
  191. skippath    defl    skippath and drvprefix        ; Do not change
  192.  
  193. ;--------------------
  194.  
  195. ; Extended command processing
  196.  
  197. rootonly    equ    yes
  198.  
  199. ecpname    macro
  200.     db    0        ; Must be 0
  201.     db    'CMDRUN  '
  202.     endm
  203.  
  204. ;--------------------
  205.  
  206. ; Miscellaneous
  207.  
  208. cmdsep    equ    ';'
  209. maxusr    equ    31
  210. maxdisk    equ    4
  211. supres    equ    false 
  212. cprmpt    equ    '>'
  213. numbase    equ    'H'
  214. curind    equ    '$'
  215. comment    equ    ';'
  216.  
  217. ; Do not change
  218.  
  219. wheel    defl    wera or wren or wlt or wgo or wsave or wget or wjump or wdir
  220. path    equ    expath
  221.  
  222. ; End of Z33HDR.LIB
  223.  
  224.