windll.doc
上传用户:andy_li
上传日期:2007-01-06
资源大小:1019k
文件大小:10k
源码类别:

压缩解压

开发平台:

MultiPlatform

  1. There are now several entry points to the dll.
  2. There is a single "unzipping" entry point of:
  3. Wiz_SingleEntryUnzip(int ifnc, char **ifnv, int xfnc, char **xfnv,
  4.                      LPDCL lpDCL, LPUSERFUNCTIONS lpUserFunc)
  5. where the arguments are:
  6. ifnc       = number of file names being passed. If all files are to be
  7.              extracted, then this can be zero.
  8. ifnv       = file names to be unarchived. Wildcard patterns are recognized
  9.              and expanded. If all files are to be extracted, then this can
  10.              be NULL.
  11. xfnc       = number of "file names to be excluded from processing" being
  12.              passed. If all files are to be extracted, set this to zero.
  13. xfnv       = file names to be excluded from the unarchiving process. Wildcard
  14.              characters are allowed and expanded. If all files are to be
  15.              extracted, set this argument to NULL.
  16. lpDCL      = pointer to a structure with the flags for setting the
  17.              various options, as well as the zip file name.
  18. lpUserFunc = pointer to a structure that contains pointers to functions
  19.              in the calling application, as well as sizes passed back to
  20.              the calling application etc. See below for a detailed description
  21.              of all the parameters
  22. The DCL structure is shown below:
  23. typedef struct {
  24. int ExtractOnlyNewer;   = true if you are to extract only newer
  25. int SpaceToUnderscore;  = true if convert space to underscore
  26. int PromptToOverwrite;  = true if prompt to overwrite is wanted
  27. int fQuiet;             = quiet flag. 1 = few messages, 2 = no messages, 0 = all messages
  28. int ncflag              = write to stdout if true
  29. int ntflag              = test zip file
  30. int nvflag              = verbose listing
  31. int nUflag              = "update" (extract only newer/new files)
  32. int nzflag              = display zip file comment
  33. int ndflag              = all args are files/dir to be extracted
  34. int noflag              = true if you are to always over-write files, false if not
  35. int naflag              = do end-of-line translation
  36. int nZIflag;            = get zip info if true
  37. int C_flag;             = be case insensitive if TRUE
  38. int fPrivilege          = 1 => restore Acl's, 2 => Use privileges
  39. LPSTR lpszZipFN         = zip file name
  40. LPSTR lpszExtractDir    = Directory to extract to. This should be NULL if you
  41.                           are extracting to the current directory.
  42. } DCL, far * LPDCL;
  43. The typedef's for the function pointers in the structure USERFUNCTIONS
  44. are shown immediately below.
  45. typedef unsigned short ush;
  46. typedef int (WINAPI DLLPRNT) (LPSTR, unsigned long);
  47. typedef int (WINAPI DLLPASSWORD) (LPSTR, int, LPCSTR, LPCSTR);
  48. typedef int (WINAPI DLLSERVICE) (LPSTR, unsigned long);
  49. typedef void (WINAPI DLLSND) (void);
  50. typedef int (WINAPI DLLREPLACE)(LPSTR);
  51. typedef void (WINAPI DLLMESSAGE)(unsigned long, unsigned long, unsigned,
  52.    unsigned, unsigned, unsigned, unsigned, unsigned,
  53.    char, LPSTR, LPSTR, unsigned long, char);
  54. Structure USERFUNCTIONS
  55. typedef struct {
  56. DLLPRNT *print;         = a pointer to the application's print routine.
  57. DLLSND *sound;          = a pointer to the application's sound routine. This
  58.                           can be NULL if your application doesn't use
  59.                           sound.
  60. DLLREPLACE *replace     = a pointer to the application's replace routine.
  61. DLLPASSWORD *password   = a pointer to the application's password routine.
  62. DLLMESSAGE *SendApplicationMessage = a pointer to the application's routine
  63.                           for displaying information about specific files
  64.                           in the archive. Used for listing the contents of
  65.                           an archive.
  66. DLLSERVICE *ServCallBk  = Callback function designed to be used for
  67.                           allowing the application to process Windows messages,
  68.                           or canceling the operation, as well as giving the
  69.                           option of a progress indicator. If this function
  70.                           returns a non-zero value, then it will terminate
  71.                           what it is doing. It provides the application with
  72.                           the name of the name of the archive member it has
  73.                           just processed, as well as it's original size.
  74. NOTE: The values below are filled in only when listing the contents of an
  75.       archive.
  76. unsigned long TotalSizeComp = value to be filled in by the dll for the
  77.                           compressed total size of the archive. Note this
  78.                           value does not include the size of the archive
  79.                           header and central directory list.
  80. unsigned long TotalSize = value to be filled in by the dll for the total
  81.                           size of all files in the archive.
  82. int CompFactor          = value to be filled in by the dll for the overall
  83.                           compression factor. This could actually be computed
  84.                           from the other values, but it is available.
  85. unsigned int NumMembers = total number of files in the archive.
  86. WORD cchComment;        = flag to be set if archive has a comment
  87. } USERFUNCTIONS, far * LPUSERFUNCTIONS;
  88. For examples of how the actual calls to the dll are set up in WiZ, look in
  89. the files action.c and wizmain.c in the WiZ source directory. For a trival
  90. example of how to load and call the dll, look in example.c and example.h.
  91. For examples of how the actual loading and unloading of the dll's themselves
  92. was done, look in wizmain.c in the WiZ source directory. Note that WiZ looks
  93. specifically for a particular version number of the dll, and also expects to
  94. find the company name to be Info-ZIP. This is to protect from getting
  95. different versions of the dll loaded, with resulting unknown behavior.
  96. Additional entry points:
  97.     void WINAPI UzpVersion2(UzpVer far *);
  98. where UzpVer is defined as:
  99. typedef struct _UzpVer {
  100.     ulg structlen;          /* length of the struct being passed */
  101.     ulg flag;               /* bit 0: is_beta   bit 1: uses_zlib */
  102.     LPSTR betalevel;        /* e.g., "g BETA" or "" */
  103.     LPSTR date;             /* e.g., "4 Sep 95" (beta) or "4 September 1995" */
  104.     LPSTR zlib_version;     /* e.g., "1.0.5" or NULL */
  105.     _version_type unzip;
  106.     _version_type zipinfo;
  107.     _version_type os2dll;
  108.     _version_type windll;
  109. } UzpVer;
  110. and _version_type is defined as:
  111. typedef struct _ver {
  112.     uch major;              /* e.g., integer 5 */
  113.     uch minor;              /* e.g., 2 */
  114.     uch patchlevel;         /* e.g., 0 */
  115.     uch not_used;
  116. } _version_type;
  117.    See api.c for exactly what UzpVersion2 does, but the short version of
  118.    what it does is fill in the version information in the UzpVer structure.
  119. void WINAPI Wiz_NoPrinting(int flag)
  120.    This entry point simply turns off all messages to the calling application if
  121.    flag is true, and turns them on if flag is false.
  122. int WINAPI Wiz_Validate(LPSTR archive, int AllCodes)
  123.    If AllCodes is FALSE, then Unz_Validate returns TRUE if archive points to a
  124.    valid archive, and FALSE otherwise. If AllCodes is TRUE, then Unz_Validate
  125.    returns whatever error code process_zipfiles returns, without evaluating it.
  126. int WINAPI Wiz_UnzipToMemory(LPSTR zip, LPSTR file, LPUSERFUNCTIONS lpUserFunc,
  127.                              UzpBuffer *retstr)
  128.    Where UzpBuffer is defined as:
  129.    typedef struct _UzpBuffer {
  130.       ulg strlength; /* length of string */
  131.       char * strptr; /* pointer to string */
  132.    } UzpBuffer
  133.    Pass the name of the zip file in zip and the name of the file you wish to
  134.    extract in file. UzpUnzipToMemory will create a buffer and return it in
  135.    *retstr. 0 on return indicates failure.
  136. int WINAPI Wiz_Grep(LPSTR archive, LPSTR file, LPSTR pattern, int cmd,
  137.                     int SkipBin, LPUSERFUNCTIONS lpUserFunc)
  138.    Pass the name of the zip file in "zip", the name of the zip entry you wish
  139.    to perform the "grep" on in "file", and the string you wish to look for in
  140.    "pattern". There are four possible options for code:
  141.    0 => case insensitive search
  142.    1 => case sensitive search
  143.    2 => case insensitive search, whole words only
  144.    3 => case sensitive search, whole words only
  145.    If SkipBin is TRUE, then any binary (loosely interpreted) files will be
  146.    ignored.
  147.    lpUserFunc is a pointer to a USERFUNCTION structure as shown above.
  148.    UzpGrep returns:
  149.    -1 => error such as unable to allocate memory, unable to find file, etc.
  150.     0 => match not found, based on the search criteria
  151.     1 => match found, based on the search criteria
  152. There is an additional function call that does not specifically deal with
  153. "unzipping", but is a quite useful function that is currently used in Wiz
  154. itself in several places. This call is currently only available in the
  155. static library, not in the DLL.
  156. Match the pattern (wildcard) against the string (fixed):
  157.   match(string, pattern, ignore_case);
  158.   returns TRUE if string matches pattern, FALSE otherwise.  In the pattern:
  159.      `*' matches any sequence of characters (zero or more)
  160.      `?' matches any single character
  161.      [SET] matches any character in the specified set,
  162.      [!SET] or [^SET] matches any character not in the specified set.
  163.   A set is composed of characters or ranges; a range looks like ``character
  164.   hyphen character'' (as in 0-9 or A-Z).  [0-9a-zA-Z_] is the minimal set of
  165.   characters allowed in the [..] pattern construct.  Other characters are
  166.   allowed (i.e., 8-bit characters) if your system will support them.
  167.   To suppress the special syntactic significance of any of ``[]*?!^-'', in-
  168.   side or outside a [..] construct, and match the character exactly, precede
  169.   it with a ``'' (backslash).
  170. The remaining functions are linked together. Their use would be as
  171. follows (explanations for each function are shown further below):
  172.     #include "windll.h"
  173.     #include "structs.h"
  174.     MyApiCallingRoutine()
  175.     {
  176.         CREATEGLOBALS();
  177.         .
  178.         .
  179.         .
  180.         Wiz_Init(pG, lpUserFunctions); /* Set up user functions */
  181.         /* zvoid *pG, LPUSERFUNCTIONS lpUserFunctions */
  182.         .
  183.         .
  184.         .
  185.         Wiz_SetOpts(pG, C); /* Set up unzipping options */
  186.         /* zvoid *pG, LPDCL C */
  187.         .
  188.         .
  189.         .
  190.         Wiz_Unzip(pG, ifnc, ifnv, xfnc, xfnv); /* Unzip files */
  191.         .
  192.         .
  193.         .
  194.         DESTROYGLOBALS();
  195.     }
  196. Each entry point is as defined below:
  197.     BOOL WINAPI Wiz_Init(zvoid *, LPUSERFUNCTIONS);
  198.     BOOL WINAPI Wiz_SetOpts(zvoid *, LPDCL);
  199.     int WINAPI Wiz_Unzip(zvoid *, int, char **, int, char **);
  200. Note that you should use either windll_unzip OR the series of calls
  201. described above. Using both, depending on how you do it, could cause
  202. problems.
  203. Last revised June 13, 1998.
  204. Mike White