
  Short description of the additional programs:
  ---------------------------------------------

  CHECKDIR performs a test on the directory referred to in the parameter
  If this directory does not exist, it will be created.

  Example : CHECKDIR [directory name]

  CHECKARC performs a test on a file and returns an errorcode,
  (if the file is a valid archive) and the corresponding archive type.
  It is also possible to check files with different extensions than the
  extensions usually given by the archive program.
  For example, SFX-Files (.EXE) or multiple volume files (.A01) may be used.
  

  Example  : CHECKARC Archivname

  Return   :  Errorlevel between 200-210

  PKZip       -  200
  ARJ         -  201
  LHarc       -  202
  Sqeeze      -  203
  PAK         -  204
  ARC         -  205
  ZOO         -  206
  UC2         -  207
  RAR         -  208
  CAB         -  209 (Microsoft cabinetfiles) 
  No archive  -  210


  FOREACH cooperates with DCC's file-lists and launches for each entry
  in this file list the corresponding program given as parameter.

  Example  : FOREACH [FILELIST] [COMMAND] [PARAMETER]

  FILELIST  is the name of the filelist. DCC is able to generate a list
            from the file(s) selected in the current active window.
            This happens on demand, for example in an user-menu or a
            scriptfile. DCC creates a filelist whenever ASCII 94 "^"
            followed by a name for the list.
  COMMAND   is the command or the program that will be executed on
            each entry of the filelist.
  PARAMETER are all parameters needed by the command/program referred
  	    to under the COMMAND section.
  	    CURFILE serves as a wildcard for each referenced filename.

  Example  :

  FOREACH C:\TEMP\FILES.LST C:\DCCPRO\CRYPTIT.EXE SECRET CURFILE CURFILE

  All files from the filelist FILES.LST will be en-/decrypted with the
  password SECRET.


  FOREACH C:\TEMP\FILES.LST PKUNZIP.EXE ARCHIV CURFILE

  All files from the filelist FILES.LST will be unzipped from the
  archive ARCHIV.                                              

  More examples for the use of the additional programs are given in
  the user menu (DCC.MNU):

   Test the integrity of an archive.
   Test archives for viruses.
   Test highlighted archives for viruses.



