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

压缩解压

开发平台:

MultiPlatform

  1. /*
  2.  Copyright (C) 1996 Mike White
  3.  Permission is granted to any individual or institution to use, copy, or
  4.  redistribute this software so long as all of the original files are included,
  5.  that it is not sold for profit, and that this copyright notice is retained.
  6. */
  7. /* Windows Info-ZIP Unzip DLL module
  8.  *
  9.  * Author: Mike White
  10.  *
  11.  * Original: 1996
  12.  *
  13.  * This module has the entry points for "unzipping" a zip file.
  14.  */
  15. /*---------------------------------------------------------------------------
  16.   This file is the WINDLL replacement for the generic ``main program source
  17.   file'' unzip.c.
  18.   See the general comments in the header part of unzip.c.
  19.   Copyrights:  see accompanying file "COPYING" in UnZip source distribution.
  20.                (This software is free but NOT IN THE PUBLIC DOMAIN.  There
  21.                are some restrictions on commercial use.)
  22.   ---------------------------------------------------------------------------*/
  23. #include <windows.h>
  24. #ifdef __RSXNT__
  25. #  include "win32/rsxntwin.h"
  26. #endif
  27. #ifdef __BORLANDC__
  28. #include <dir.h>
  29. #endif
  30. #define UNZIP_INTERNAL
  31. #include "unzip.h"
  32. #include "crypt.h"
  33. #include "version.h"
  34. #include "windll.h"
  35. #include "structs.h"
  36. #include "consts.h"
  37. /* Added type casts to prevent potential "type mismatch" error messages. */
  38. #ifdef REENTRANT
  39. #  undef __G
  40. #  undef __G__
  41. #  define __G                 (Uz_Globs *)pG
  42. #  define __G__               (Uz_Globs *)pG,
  43. #endif
  44. HANDLE hwildZipFN;
  45. HANDLE hInst;               /* current instance */
  46. HANDLE hDCL;
  47. int fNoPrinting = 0;
  48. extern jmp_buf dll_error_return;
  49. /* For displaying status messages and error messages */
  50. static int UZ_EXP DllMessagePrint(zvoid *pG, uch *buf, ulg size, int flag);
  51. #if 0 /* currently unused */
  52. /* For displaying files extracted to the display window */
  53. int DllDisplayPrint(zvoid *pG, uch *buf, ulg size, int flag);
  54. #endif /* never */
  55. /* Callback function for status report and/or user interception */
  56. static int UZ_EXP Wiz_StatReportCB(zvoid *pG, int fnflag, ZCONST char *zfn,
  57.                                    ZCONST char *efn, ZCONST zvoid *details);
  58. /* Dummy sound function for those applications that don't use sound */
  59. static void WINAPI DummySound(void);
  60. #ifndef UNZIPLIB
  61. /*  DLL Entry Point */
  62. #ifdef __BORLANDC__
  63. #pragma argsused
  64. /* Borland seems to want DllEntryPoint instead of DllMain like MSVC */
  65. #define DllMain DllEntryPoint
  66. #endif
  67. #ifdef WIN32
  68. BOOL WINAPI DllMain( HINSTANCE hInstance,
  69.                      DWORD dwReason,
  70.                      LPVOID plvReserved)
  71. #else
  72. int FAR PASCAL LibMain( HINSTANCE hInstance,
  73.                         WORD wDataSegment,
  74.                         WORD wHeapSize,
  75.                         LPSTR lpszCmdLine )
  76. #endif
  77. {
  78. #ifndef WIN32
  79. /* The startup code for the DLL initializes the local heap(if there is one)
  80.  * with a call to LocalInit which locks the data segment.
  81.  */
  82. if ( wHeapSize != 0 )
  83.    {
  84.    UnlockData( 0 );
  85.    }
  86. hInst = hInstance;
  87. return 1;   /* Indicate that the DLL was initialized successfully. */
  88. #else
  89. BOOL rc = TRUE;
  90. switch( dwReason )
  91.    {
  92.    case DLL_PROCESS_ATTACH:
  93.       // DLL is loaded. Do your initialization here.
  94.       // If cannot init, set rc to FALSE.
  95.       hInst = hInstance;
  96.       break;
  97.    case DLL_PROCESS_DETACH:
  98.       // DLL is unloaded. Do your cleanup here.
  99.       break;
  100.    default:
  101.       break;
  102.    }
  103. return rc;
  104. #endif
  105. }
  106. #ifdef __BORLANDC__
  107. #pragma argsused
  108. #endif
  109. int FAR PASCAL WEP ( int bSystemExit )
  110. {
  111. return 1;
  112. }
  113. #endif /* !UNZIPLIB */
  114. /* DLL calls */
  115. /*
  116.     ExtractOnlyNewer  = true if you are to extract only newer
  117.     SpaceToUnderscore = true if convert space to underscore
  118.     PromptToOverwrite = true if prompt to overwrite is wanted
  119.     fQuiet    = quiet flag. 1 = few messages, 2 = no messages, 0 = all messages
  120.     ncflag    = write to stdout if true
  121.     ntflag    = test zip file
  122.     nvflag    = verbose listing
  123.     nUflag    = "update" (extract only newer/new files)
  124.     nzflag    = display zip file comment
  125.     ndflag    = all args are files/dir to be extracted
  126.     noflag    = overwrite all files
  127.     naflag    = do end-of-line translation
  128.     nZIflag   = get Zip Info if TRUE
  129.     C_flag    = be case insensitive if TRUE
  130.     fPrivilege = restore ACL's if 1, use privileges if 2
  131.     lpszZipFN = zip file name
  132.     lpszExtractDir = directory to extract to; NULL means: current directory
  133. */
  134. BOOL WINAPI Wiz_SetOpts(pG, C)
  135. zvoid *pG;
  136. LPDCL C;
  137. {
  138.     uO.qflag = C->fQuiet;  /* Quiet flag */
  139.     G.pfnames = (char **)&fnames[0];    /* assign default file name vector */
  140.     G.pxnames = (char **)&fnames[1];
  141.     uO.jflag = !C->ndflag;
  142.     uO.cflag = C->ncflag;
  143.     uO.overwrite_all = C->noflag;
  144.     uO.tflag = C->ntflag ;
  145.     uO.vflag = C->nvflag;
  146.     uO.zflag = C->nzflag;
  147.     uO.uflag = C->nUflag;
  148.     uO.aflag = C->naflag;
  149.     uO.C_flag = C->C_flag;
  150.     uO.uflag = C->ExtractOnlyNewer;
  151.     G.prompt_always = C->PromptToOverwrite;
  152. #ifdef WIN32
  153.     uO.X_flag = C->fPrivilege;
  154. #endif
  155.     uO.overwrite_none = !uO.overwrite_all;
  156.     uO.sflag = C->SpaceToUnderscore; /* Translate spaces to underscores? */
  157.     if (C->nZIflag)
  158.       {
  159.       uO.zipinfo_mode = TRUE;
  160.       uO.hflag = TRUE;
  161.       uO.lflag = 10;
  162.       uO.qflag = 2;
  163.       }
  164.     else
  165.       {
  166.       uO.zipinfo_mode = FALSE;
  167.       }
  168.     G.extract_flag = (!uO.zipinfo_mode &&
  169.                       !uO.cflag && !uO.tflag && !uO.vflag && !uO.zflag
  170. #ifdef TIMESTAMP
  171.                       && !uO.T_flag
  172. #endif
  173.                      );
  174.     if (C->lpszExtractDir != NULL && G.extract_flag)
  175.        {
  176. #ifndef CRTL_CP_IS_ISO
  177.        char *pExDirRoot = (char *)malloc(strlen(C->lpszExtractDir)+1);
  178.        if (pExDirRoot == NULL)
  179.            return FALSE;
  180.        ISO_TO_INTERN(C->lpszExtractDir, pExDirRoot);
  181. #else
  182. #  define pExDirRoot C->lpszExtractDir
  183. #endif
  184.        uO.exdir = pExDirRoot;
  185.        }
  186.     else
  187.        {
  188.        uO.exdir = (char *)NULL;
  189.        }
  190. /* G.wildzipfn needs to be initialized so that do_wild does not wind
  191.    up clearing out the zip file name when it returns in process.c
  192. */
  193.     hwildZipFN = GlobalAlloc(GPTR, FILNAMSIZ);
  194.     if (hwildZipFN == (HGLOBAL) NULL)
  195.        return FALSE;
  196.     G.wildzipfn = GlobalLock(hwildZipFN);
  197.     lstrcpy(G.wildzipfn, C->lpszZipFN);
  198.     _ISO_INTERN(G.wildzipfn);
  199.     return TRUE;    /* set up was OK */
  200. }
  201. void FreeDllMem(__GPRO)
  202. {
  203.     if (G.wildzipfn) {
  204.         GlobalUnlock(hwildZipFN);
  205.         G.wildzipfn = NULL;
  206.     }
  207.     if (hwildZipFN)
  208.         hwildZipFN = GlobalFree(hwildZipFN);
  209.     uO.zipinfo_mode = FALSE;
  210. }
  211. int WINAPI Wiz_SingleEntryUnzip(int ifnc, char **ifnv, int xfnc, char **xfnv,
  212.    LPDCL C, LPUSERFUNCTIONS lpUserFunc)
  213. {
  214. int retcode;
  215. CONSTRUCTGLOBALS();
  216. if (!Wiz_Init((zvoid *)&G, lpUserFunc))
  217.    {
  218.    DESTROYGLOBALS();
  219.    return PK_BADERR;
  220.    }
  221. if (C->lpszZipFN == NULL) /* Something has screwed up, we don't have a filename */
  222.    {
  223.    DESTROYGLOBALS();
  224.    return PK_NOZIP;
  225.    }
  226. Wiz_SetOpts((zvoid *)&G, C);
  227. #ifdef SFX
  228. G.zipfn = C->lpszZipFN;
  229. G.argv0 = C->lpszZipFN;
  230. #endif
  231. /* Here is the actual call to "unzip" the files (or whatever else you
  232.  * are doing.)
  233.  */
  234. retcode = Wiz_Unzip((zvoid *)&G, ifnc, ifnv, xfnc, xfnv);
  235. DESTROYGLOBALS();
  236. return retcode;
  237. }
  238. BOOL WINAPI Wiz_Init(pG, lpUserFunc)
  239. zvoid *pG;
  240. LPUSERFUNCTIONS lpUserFunc;
  241. {
  242. G.message = DllMessagePrint;
  243. G.statreportcb = Wiz_StatReportCB;
  244. if (lpUserFunc->sound == NULL)
  245.    lpUserFunc->sound = DummySound;
  246. G.lpUserFunctions = lpUserFunc;
  247. if (!G.lpUserFunctions->print ||
  248.     !G.lpUserFunctions->sound ||
  249.     !G.lpUserFunctions->replace)
  250.     return FALSE;
  251. return TRUE;
  252. }
  253. int WINAPI Wiz_Unzip(pG, ifnc, ifnv, xfnc, xfnv)
  254. zvoid *pG;
  255. int ifnc;
  256. char **ifnv;
  257. int xfnc;
  258. char **xfnv;
  259. {
  260. int retcode, f_cnt;
  261. #ifndef CRTL_CP_IS_ISO
  262. char **intern_ifv = NULL, **intern_xfv = NULL;
  263. #endif
  264. if (ifnv == (char **)NULL && ifnc != 0)
  265.     ifnc = 0;
  266. else
  267.     for (f_cnt = 0; f_cnt < ifnc; f_cnt++)
  268.         if (ifnv[f_cnt] == (char *)NULL) {
  269.             ifnc = f_cnt;
  270.             break;
  271.         }
  272. if (xfnv == (char **)NULL && xfnc != 0)
  273.     xfnc = 0;
  274. else
  275.     for (f_cnt = 0; f_cnt < xfnc; f_cnt++)
  276.         if (xfnv[f_cnt] == (char *)NULL) {
  277.             xfnc = f_cnt;
  278.             break;
  279.         }
  280. G.process_all_files = (ifnc == 0 && xfnc == 0);         /* for speed */
  281. G.filespecs = ifnc;
  282. G.xfilespecs = xfnc;
  283. if (ifnc > 0) {
  284. #ifdef CRTL_CP_IS_ISO
  285.     G.pfnames = ifnv;
  286. #else /* !CRTL_CP_IS_ISO */
  287.     unsigned bufsize = 0;
  288.     intern_ifv = (char **)malloc((ifnc+1)*sizeof(char **));
  289.     if (intern_ifv == (char **)NULL)
  290.         {
  291.         FreeDllMem(__G);
  292.         return PK_BADERR;
  293.         }
  294.     for (f_cnt = ifnc; --f_cnt >= 0;)
  295.         bufsize += strlen(ifnv[f_cnt]) + 1;
  296.     intern_ifv[0] = (char *)malloc(bufsize);
  297.     if (intern_ifv[0] == (char *)NULL)
  298.         {
  299.         free(intern_ifv);
  300.         FreeDllMem(__G);
  301.         return PK_BADERR;
  302.         }
  303.     for (f_cnt = 0; ; f_cnt++)
  304.         {
  305.         ISO_TO_INTERN(ifnv[f_cnt], intern_ifv[f_cnt]);
  306.         if ((f_cnt+1) >= ifnc)
  307.             break;
  308.         intern_ifv[f_cnt+1] = intern_ifv[f_cnt] +
  309.                               (strlen(intern_ifv[f_cnt]) + 1);
  310.         }
  311.     intern_ifv[ifnc] = (char *)NULL;
  312.     G.pfnames = intern_ifv;
  313. #endif /* ?CRTL_CP_IS_ISO */
  314.     }
  315. if (xfnc > 0) {
  316. #ifdef CRTL_CP_IS_ISO
  317.     G.pxnames = xfnv;
  318. #else /* !CRTL_CP_IS_ISO */
  319.     unsigned bufsize = 0;
  320.     intern_xfv = (char **)malloc((xfnc+1)*sizeof(char **));
  321.     if (intern_xfv == (char **)NULL)
  322.         {
  323.         if (ifnc > 0)
  324.             {
  325.             free(intern_ifv[0]);
  326.             free(intern_ifv);
  327.             }
  328.         FreeDllMem(__G);
  329.         return PK_BADERR;
  330.         }
  331.     for (f_cnt = xfnc; --f_cnt >= 0;)
  332.         bufsize += strlen(xfnv[f_cnt]) + 1;
  333.     intern_xfv[0] = (char *)malloc(bufsize);
  334.     if (intern_xfv[0] == (char *)NULL)
  335.         {
  336.         free(intern_xfv);
  337.         if (ifnc > 0)
  338.             {
  339.             free(intern_ifv[0]);
  340.             free(intern_ifv);
  341.             }
  342.         FreeDllMem(__G);
  343.         return PK_BADERR;
  344.         }
  345.     for (f_cnt = 0; ; f_cnt++)
  346.         {
  347.         ISO_TO_INTERN(xfnv[f_cnt], intern_xfv[f_cnt]);
  348.         if ((f_cnt+1) >= xfnc)
  349.             break;
  350.         intern_xfv[f_cnt+1] = intern_xfv[f_cnt] +
  351.                               (strlen(intern_xfv[f_cnt]) + 1);
  352.         }
  353.     intern_xfv[xfnc] = (char *)NULL;
  354.     G.pxnames = intern_xfv;
  355. #endif /* ?CRTL_CP_IS_ISO */
  356.     }
  357. /*---------------------------------------------------------------------------
  358.     Okey dokey, we have everything we need to get started.  Let's roll.
  359.   ---------------------------------------------------------------------------*/
  360. retcode = setjmp(dll_error_return);
  361. if (retcode)
  362.    {
  363. #ifndef CRTL_CP_IS_ISO
  364.    if (xfnc > 0)
  365.       {
  366.       free(intern_xfv[0]);
  367.       free(intern_xfv);
  368.       }
  369.    if (ifnc > 0)
  370.       {
  371.       free(intern_ifv[0]);
  372.       free(intern_ifv);
  373.       }
  374. #endif
  375.    FreeDllMem(__G);
  376.    return PK_BADERR;
  377.    }
  378. retcode = process_zipfiles(__G);
  379. #ifndef CRTL_CP_IS_ISO
  380. if (xfnc > 0)
  381.    {
  382.    free(intern_xfv[0]);
  383.    free(intern_xfv);
  384.    }
  385. if (ifnc > 0)
  386.    {
  387.    free(intern_ifv[0]);
  388.    free(intern_ifv);
  389.    }
  390. #endif
  391. FreeDllMem(__G);
  392. return retcode;
  393. }
  394. int win_fprintf(zvoid *pG, FILE *file, unsigned int size, char far *buffer)
  395. {
  396. if ((file != stderr) && (file != stdout))
  397.    {
  398.    return write(fileno(file),(char far *)(buffer),size);
  399.    }
  400. if (!fNoPrinting)
  401.    return G.lpUserFunctions->print((LPSTR)buffer, size);
  402. return (int)size;
  403. }
  404. /**********************************
  405.  * Function DllMessagePrint()     *
  406.  *                                *
  407.  * Send messages to status window *
  408.  **********************************/
  409. #ifdef __BORLANDC__
  410. #pragma argsused
  411. #endif
  412. static int UZ_EXP DllMessagePrint(pG, buf, size, flag)
  413.     zvoid *pG;      /* globals struct:  always passed */
  414.     uch *buf;       /* preformatted string to be printed */
  415.     ulg size;       /* length of string (may include nulls) */
  416.     int flag;       /* flag bits */
  417. {
  418. if (!fNoPrinting)
  419.    return G.lpUserFunctions->print((LPSTR)buf, size);
  420. else
  421.    return (int)size;
  422. }
  423. #if 0 /* currently unused */
  424. /********************************
  425.  * Function DllDisplayPrint()   *
  426.  *                              *
  427.  * Send files to display window *
  428.  ********************************/
  429. #ifdef __BORLANDC__
  430. #pragma argsused
  431. #endif
  432. int DllDisplayPrint(pG, buf, size, flag)
  433.     zvoid *pG;      /* globals struct:  always passed */
  434.     uch *buf;       /* preformatted string to be printed */
  435.     ulg size;       /* length of string (may include nulls) */
  436.     int flag;       /* flag bits */
  437. {
  438. return (!fNoPrinting ? G.lpUserFunctions->print((LPSTR)buf, size) : (int)size);
  439. }
  440. #endif /* never */
  441. /**********************************
  442.  * Function UzpPassword()         *
  443.  *                                *
  444.  * Prompt for decryption password *
  445.  **********************************/
  446. #ifdef __BORLANDC__
  447. #pragma argsused
  448. #endif
  449. int UZ_EXP UzpPassword(pG, rcnt, pwbuf, size, zfn, efn)
  450.     zvoid *pG;          /* globals struct: always passed */
  451.     int *rcnt;          /* retry counter */
  452.     char *pwbuf;        /* buffer for password */
  453.     int size;           /* size of password buffer */
  454.     ZCONST char *zfn;   /* name of zip archiv */
  455.     ZCONST char *efn;   /* name of archiv entry being processed */
  456. {
  457. #if CRYPT
  458.     LPSTR m;
  459.     if (*rcnt == 0) {
  460.         *rcnt = 2;
  461.         m = "Enter password for: ";
  462.     } else {
  463.         (*rcnt)--;
  464.         m = "Password incorrect--reenter: ";
  465.     }
  466.     return (*G.lpUserFunctions->password)((LPSTR)pwbuf, size, m, (LPSTR)efn);
  467. #else /* !CRYPT */
  468.     return IZ_PW_ERROR; /* internal error, function should never get called */
  469. #endif /* ?CRYPT */
  470. } /* end function UzpPassword() */
  471. /* Turn off all messages to the calling application */
  472. void WINAPI Wiz_NoPrinting(int f)
  473. {
  474. fNoPrinting = f;
  475. }
  476. /* Dummy sound function for those applications that don't use sound */
  477. static void WINAPI DummySound(void)
  478. {
  479. }
  480. /* Interface between WINDLL specific service callback functions and the
  481.    generic DLL's "status report & user interception" callback */
  482. #ifdef __BORLANDC__
  483. #pragma argsused
  484. #endif
  485. static int WINAPI Wiz_StatReportCB(zvoid *pG, int fnflag, ZCONST char *zfn,
  486.                     ZCONST char *efn, ZCONST zvoid *details)
  487. {
  488.     int rval = UZ_ST_CONTINUE;
  489.     switch (fnflag) {
  490.       case UZ_ST_START_EXTRACT:
  491.         if (G.lpUserFunctions->sound != NULL)
  492.             (*G.lpUserFunctions->sound)();
  493.         break;
  494.       case UZ_ST_FINISH_MEMBER:
  495.         if ((G.lpUserFunctions->ServCallBk != NULL) &&
  496.             (*G.lpUserFunctions->ServCallBk)(efn, *((unsigned long *)details)))
  497.             rval = UZ_ST_BREAK;
  498.         break;
  499.       case UZ_ST_IN_PROGRESS:
  500.         break;
  501.       default:
  502.         break;
  503.     }
  504.     return rval;
  505. }
  506. #ifndef SFX
  507. #ifndef __16BIT__
  508. int WINAPI Wiz_UnzipToMemory(LPSTR zip, LPSTR file,
  509.     LPUSERFUNCTIONS lpUserFunctions, UzpBuffer *retstr)
  510. {
  511.     int r;
  512. #ifndef CRTL_CP_IS_ISO
  513.     char *intern_zip, *intern_file;
  514. #endif
  515.     CONSTRUCTGLOBALS();
  516. #ifndef CRTL_CP_IS_ISO
  517.     intern_zip = (char *)malloc(strlen(zip)+1);
  518.     if (intern_zip == NULL) {
  519.        DESTROYGLOBALS()
  520.        return PK_MEM;
  521.     }
  522.     intern_file = (char *)malloc(strlen(file)+1);
  523.     if (intern_file == NULL) {
  524.        DESTROYGLOBALS()
  525.        free(intern_zip);
  526.        return PK_MEM;
  527.     }
  528.     ISO_TO_INTERN(zip, intern_zip);
  529.     ISO_TO_INTERN(file, intern_file);
  530. #   define zip intern_zip
  531. #   define file intern_file
  532. #endif
  533.     if (!Wiz_Init((zvoid *)&G, lpUserFunctions)) {
  534.        DESTROYGLOBALS();
  535.        return PK_BADERR;
  536.     }
  537.     G.redirect_data = 1;
  538.     r = (unzipToMemory(__G__ zip, file, retstr) == PK_COOL);
  539.     DESTROYGLOBALS()
  540. #ifndef CRTL_CP_IS_ISO
  541. #  undef file
  542. #  undef zip
  543.     free(intern_file);
  544.     free(intern_zip);
  545. #endif
  546.     if (!r && retstr->strlength) {
  547.        free(retstr->strptr);
  548.        retstr->strptr = NULL;
  549.     }
  550.     return r;
  551. }
  552. /* Purpose: Determine if file in archive contains the string szSearch
  553.    Parameters: archive  = archive name
  554.                file     = file contained in the archive. This cannot be
  555.                           a wild card to be meaningful
  556.                pattern  = string to search for
  557.                cmd      = 0 - case-insensitive search
  558.                           1 - case-sensitve search
  559.                           2 - case-insensitive, whole words only
  560.                           3 - case-sensitive, whole words only
  561.                SkipBin  = if true, skip any files that have control
  562.                           characters other than CR, LF, or tab in the first
  563.                           100 characters.
  564.    Returns:    TRUE if a match is found
  565.                FALSE if no match is found
  566.                -1 on error
  567.    Comments: This does not pretend to be as useful as the standard
  568.              Unix grep, which returns the strings associated with a
  569.              particular pattern, nor does it search past the first
  570.              matching occurrence of the pattern.
  571.  */
  572. int WINAPI Wiz_Grep(LPSTR archive, LPSTR file, LPSTR pattern, int cmd,
  573.                    int SkipBin, LPUSERFUNCTIONS lpUserFunctions)
  574. {
  575.     int retcode = FALSE, compare;
  576.     ulg i, j, patternLen, buflen;
  577.     char * sz, *p;
  578.     UzpBuffer retstr;
  579.     /* Turn off any windows printing functions, as they may not have been
  580.      * identified yet. There is no requirement that we initialize the
  581.      * dll with printing stuff for this. */
  582.     Wiz_NoPrinting(TRUE);
  583.     if (!Wiz_UnzipToMemory(archive, file, lpUserFunctions, &retstr)) {
  584.        Wiz_NoPrinting(FALSE);
  585.        return -1;   /* not enough memory, file not found, or other error */
  586.     }
  587.     if (SkipBin) {
  588.         if (retstr.strlength < 100)
  589.             buflen = retstr.strlength;
  590.         else
  591.             buflen = 100;
  592.         for (i = 0; i < buflen; i++) {
  593.             if (iscntrl(retstr.strptr[i])) {
  594.                 if ((retstr.strptr[i] != 0x0A) &&
  595.                     (retstr.strptr[i] != 0x0D) &&
  596.                     (retstr.strptr[i] != 0x09))
  597.                 {
  598.                     /* OK, we now think we have a binary file of some sort */
  599.                     free(retstr.strptr);
  600.                     Wiz_NoPrinting(FALSE);
  601.                     return FALSE;
  602.                 }
  603.             }
  604.         }
  605.     }
  606.     patternLen = strlen(pattern);
  607.     if (retstr.strlength < patternLen) {
  608.         free(retstr.strptr);
  609.         Wiz_NoPrinting(FALSE);
  610.         return FALSE;
  611.     }
  612.     sz = malloc(patternLen + 3); /* add two in case doing whole words only */
  613.     if (cmd > 1) {
  614.         strcpy(sz, " ");
  615.         strcat(sz, pattern);
  616.         strcat(sz, " ");
  617.     } else
  618.         strcpy(sz, pattern);
  619.     if ((cmd == 0) || (cmd == 2)) {
  620.         for (i = 0; i < strlen(sz); i++)
  621.             sz[i] = toupper(sz[i]);
  622.         for (i = 0; i < retstr.strlength; i++)
  623.             retstr.strptr[i] = toupper(retstr.strptr[i]);
  624.     }
  625.     for (i = 0; i < (retstr.strlength - patternLen); i++) {
  626.         p = &retstr.strptr[i];
  627.         compare = TRUE;
  628.         for (j = 0; j < patternLen; j++) {
  629.             /* We cannot do strncmp here, as we may be dealing with a
  630.              * "binary" file, such as a word processing file, or perhaps
  631.              * even a true executable of some sort. */
  632.             if (p[j] != sz[j]) {
  633.                 compare = FALSE;
  634.                 break;
  635.             }
  636.         }
  637.         if (compare == TRUE) {
  638.             retcode = TRUE;
  639.             break;
  640.         }
  641.     }
  642.     free(sz);
  643.     free(retstr.strptr);
  644.     Wiz_NoPrinting(FALSE); /* Turn printing back on */
  645.     return retcode;
  646. }
  647. #endif /* !__16BIT__ */
  648. int WINAPI Wiz_Validate(LPSTR archive, int AllCodes)
  649. {
  650.     return UzpValidate((char *)archive, AllCodes);
  651. }
  652. #endif /* !SFX */