(c) Copyright 1996 Kevin Ash
    e-mail[ valid until June '97 ]:     k.a.ash@newcastle.ac.uk
    snail mail: see end of document

For updates and other software I've coded check out[ valid until June '97 ].
    http://www.ncl.ac.uk//~n4050728/os2/



    These files are provided as away of changing the icons, menus and altering the string
used to call unzip.
    To use first make any changes to KZipDll.rc and then run resource.cmd

WARNING: if you choose to change STR_UNZIP and/or STR_UNZIPARGS be sure you know what
         you're doing else at best you'll not be able to extract files from the archive
         or at worst you'll end up mangling the archive

    If you choose to modify the STRINGTABLE entries for calling unzip
    STR_UNZIP   must be the name of the executable( eg "unzip.exe"), It must be just one word.
    and
    STR_UNZIPARGS    must have a format like
                "\042%s\042 \042%s\042 -d \042%s\042"
    the 1st %s is the name of the archive
    the 2nd %s is the name of the file(s) to extract
    and the 3rd %sis the name of the directory to extract it

    Each must be quoted which is why the \042 appear( 042( 34 in decimal) is ascii code for " )


if you use unzip I would recomend the following STR_*
STR_UNZIP        "unzip.exe"
STR_UNZIPARGS    "-q -n \042%s\042 \042%s\042 -d \042%s\042"

however if you use pkunzip I think these are the required strings
STR_UNZIP        "pkunzip.exe"
STR_UNZIPARGS    "-d -n \042%s\042 \042%s\042 \042%s\042"

NB: i don't actually have pkunzip for os2( however these are the commands that would be
    used with the dos version, if these are not right let me know so I can make the
    appropriate changes )

In both cases you may have to specify the full-path for the file.
NB: you'll need to use double backslashes if doing this
eg. if unzip.exe is in D:\bin then this will do
STR_UNZIP "D:\\bin\\unzip.exe"
STR_UNZIPARGS    "-d -n \042%s\042 \042%s\042 \042%s\042"

