home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1999 February / VPR9902A.BIN / OLS / IZPDJ004 / IZPDJ004.LZH / SRC / IZIP32J.DIF next >
Text File  |  1998-06-02  |  40KB  |  1,156 lines

  1. diff -ruN zip22org/api.c zip22/api.c
  2. --- zip22org/api.c    Tue Oct  7 02:48:14 1997
  3. +++ zip22/api.c    Mon Nov 10 02:45:22 1997
  4. @@ -252,7 +252,13 @@
  5.        return ZE_MEM;
  6.     argCee++;
  7.     }
  8. -if (Options.fRecurse) /* recurse into subdirectories -R */
  9. +if (Options.fRecurse==1) /* recurse into subdirectories -R */
  10. +   {
  11. +   if (AllocMemory(argCee, "-r", "Recurse") != ZE_OK)
  12. +      return ZE_MEM;
  13. +   argCee++;
  14. +   }
  15. +if (Options.fRecurse==2) /* recurse into subdirectories -R */
  16.     {
  17.     if (AllocMemory(argCee, "-R", "Recurse") != ZE_OK)
  18.        return ZE_MEM;
  19. diff -ruN zip22org/crypt.c zip22/crypt.c
  20. --- zip22org/crypt.c    Mon Oct  6 04:05:30 1997
  21. +++ zip22/crypt.c    Tue Jun  2 03:58:32 1998
  22. @@ -10,3 +10,135 @@
  23.  
  24.  /* something "externally visible" to shut up compiler/linker warnings */
  25.  int zcr_dummy;
  26. +
  27. +/*
  28. +    for IZIP32J.DLL
  29. +        by Yoshioka Tsuneo(QWF00133@niftyserve.or.jp)
  30. +        welcome any e-mail!!
  31. +        You can use this file as Public Domain Software.
  32. +        Copy,Edit,Re-distibute and for any purpose,you can use this file.
  33. +
  34. +*/
  35. +
  36. +#if CRYPT
  37. +
  38. +#ifndef WINDLL
  39. +#error "Please use crypt.c of zcrypt27.zip"
  40. +#endif
  41. +#include "zip.h"
  42. +#include "crypt.h"
  43. +#include "ttyio.h"
  44. +#include <time.h>
  45. +         
  46. +static int ZCRYPT32DLLLoaded=0;
  47. +static HINSTANCE ZCRYPT32DLLhLib;
  48. +
  49. +int ZCRYPT32DLLLoadLibrary(void)
  50. +{
  51. +    HINSTANCE hLib;
  52. +
  53. +    if(ZCRYPT32DLLLoaded==1){return 0;}
  54. +    hLib=LoadLibrary("ZCRYPT32.DLL");
  55. +    if(hLib == NULL){
  56. +        MessageBox(NULL,"Can't load ZCRYPT32.DLL","Error",MB_ICONEXCLAMATION);
  57. +        return -1;
  58. +    }
  59. +
  60. +    ZCRYPT32DLLhLib=hLib;
  61. +#define IMPORTPROC(FUNC) FUNC = GetProcAddress(hLib,#FUNC)
  62. +    IMPORTPROC(zencode);
  63. +    IMPORTPROC(zencode_n);
  64. +#ifndef UNZIP                   /* UnZip provides this in globals.h */
  65. +    IMPORTPROC(zcrypt_set_crc_32_tab);
  66. +#endif
  67. +    IMPORTPROC(decrypt_byte);
  68. +    IMPORTPROC(update_keys);
  69. +    IMPORTPROC(init_keys);
  70. +#ifdef ZIP
  71. +    /*IMPORTPROC(crypthead);*/
  72. +#ifdef UTIL
  73. +    IMPORTPROC(zipcloak);
  74. +    IMPORTPROC(zipbare);
  75. +#else
  76. +    /*IMPORTPROC(zfwrite);*/
  77. +    IMPORTPROC(zcrypt_set_key);
  78. +#endif    /* UTIL */
  79. +#endif    /* ZIP */
  80. +    return 0;
  81. +}
  82. +int ZCRYPT32DLLFreeLibrary(void)
  83. +{
  84. +    if(ZCRYPT32DLLLoaded==0){return 0;}
  85. +    FreeLibrary(ZCRYPT32DLLhLib);
  86. +}
  87. +
  88. +/***********************************************************************
  89. + * Write encryption header to file zfile using the password passwd
  90. + * and the cyclic redundancy check crc.
  91. + */
  92. +void crypthead(passwd, crc, zfile)
  93. +    char *passwd;                /* password string */
  94. +    ulg crc;                     /* crc of file being encrypted */
  95. +    FILE *zfile;                 /* where to write header */
  96. +{
  97. +    int n;                       /* index in random header */
  98. +    int t;                       /* temporary */
  99. +    int c;                       /* random byte */
  100. +    int ztemp;                   /* temporary for zencoded value */
  101. +    uch header[RAND_HEAD_LEN-2]; /* random header */
  102. +    static unsigned calls = 0;   /* ensure different random header each time */
  103. +
  104. +    /* First generate RAND_HEAD_LEN-2 random bytes. We encrypt the
  105. +     * output of rand() to get less predictability, since rand() is
  106. +     * often poorly implemented.
  107. +     */
  108. +    if (++calls == 1) {
  109. +#  ifndef ZCR_SEED2
  110. +#    define ZCR_SEED2 (unsigned)3141592654L     /* use PI as default pattern */
  111. +#  endif
  112. +        srand((unsigned)time(NULL) ^ ZCR_SEED2);
  113. +    }
  114. +    init_keys(passwd);
  115. +    for (n = 0; n < RAND_HEAD_LEN-2; n++) {
  116. +        c = (rand() >> 7) & 0xff;
  117. +        header[n] = (uch)zencode(c, t);
  118. +    }
  119. +    /* Encrypt random header (last two bytes is high word of crc) */
  120. +    init_keys(passwd);
  121. +    for (n = 0; n < RAND_HEAD_LEN-2; n++) {
  122. +        ztemp = zencode(header[n], t);
  123. +        putc(ztemp, zfile);
  124. +    }
  125. +    ztemp = zencode((int)(crc >> 16) & 0xff, t);
  126. +    putc(ztemp, zfile);
  127. +    ztemp = zencode((int)(crc >> 24) & 0xff, t);
  128. +    putc(ztemp, zfile);
  129. +}
  130. +
  131. +
  132. +unsigned zfwrite(buf, item_size, nb, f)
  133. +    zvoid *buf;                /* data buffer */
  134. +    extent item_size;          /* size of each item in bytes */
  135. +    extent nb;                 /* number of items */
  136. +    FILE *f;                   /* file to write to */
  137. +{
  138. +    int t;                    /* temporary */
  139. +
  140. +    if (key != (char *)NULL) { /* key is the global password pointer */
  141. +        ulg size;              /* buffer size */
  142. +        char *p = (char*)buf;  /* steps through buffer */
  143. +
  144. +        /* Encrypt data in buffer */
  145. +#if 0
  146. +        for (size = item_size*(ulg)nb; size != 0; p++, size--) {
  147. +            *p = (char)zencode(*p, t);
  148. +        }
  149. +#else
  150. +        zencode_n(p,item_size*(ulg)nb);
  151. +#endif
  152. +    }
  153. +    /* Write the buffer out */
  154. +    return fwrite(buf, item_size, nb, f);
  155. +}
  156. +
  157. +#endif /* CRYPT */
  158. diff -ruN zip22org/crypt.h zip22/crypt.h
  159. --- zip22org/crypt.h    Mon Oct  6 04:05:44 1997
  160. +++ zip22/crypt.h    Tue Jun  2 03:58:32 1998
  161. @@ -7,18 +7,135 @@
  162.     See the "WHERE" file for sites from which to obtain the full crypt
  163.     sources (zcrypt27.zip or later).
  164.   */
  165. +/*
  166. +   crypt.h (full version) by Info-ZIP.   Last revised:  [see CR_VERSION_DATE]
  167. +
  168. +   This header file is not copyrighted, and non-beta versions may be
  169. +   distributed without restriction.
  170. + */
  171.  
  172.  #ifndef __crypt_h   /* don't include more than once */
  173.  #define __crypt_h
  174.  
  175. +
  176.  #ifdef CRYPT
  177.  #  undef CRYPT
  178. +#  define CRYPT  1    /* dummy version */
  179. +#else
  180. +#  define CRYPT  0    /* dummy version */
  181. +#endif
  182. +
  183. +#if !CRYPT
  184. +#    define zencode
  185. +#    define zdecode
  186. +#    define zfwrite  fwrite
  187. +#else    /* !CRYPT */
  188. +
  189. +#ifdef WINDLL
  190. +#    include <windows.h>
  191. +#    define DLLIMPORT(FUNC) (WINAPI *FUNC)
  192. +int ZCRYPT32DLLLoadLibrary(void);
  193. +int ZCRYPT32DLLFreeLibrary(void);
  194. +#else
  195. +#    define DLLIMPORT(FUNC)  FUNC
  196. +#endif
  197. +
  198. +#ifdef _WIN32
  199. +void DLLIMPORT(zencode_n)(char *ptr,int n);
  200. +int DLLIMPORT(zencode)(char c,int *t);
  201. +#endif
  202. +
  203. +#define CR_MAJORVER        2
  204. +#define CR_MINORVER        7
  205. +#ifdef CR_BETA
  206. +#  define CR_BETA_VER      "m BETA"
  207. +#  define CR_VERSION_DATE  "13 April 1997"     /* last real code change */
  208. +#else
  209. +#  define CR_BETA_VER      ""
  210. +#  define CR_VERSION_DATE  "22 April 1997"     /* last public release date */
  211. +#  define CR_RELEASE
  212. +#endif
  213. +
  214. +#ifndef __G         /* UnZip only, for now (DLL stuff) */
  215. +#  define __G
  216. +#  define __G__
  217. +#  define __GDEF
  218. +#  define __GPRO    void
  219. +#  define __GPRO__
  220. +#endif
  221. +
  222. +#if defined(MSDOS) || defined(OS2) || defined(WIN32)
  223. +#  ifndef DOS_OS2_W32
  224. +#    define DOS_OS2_W32
  225. +#  endif
  226. +#endif
  227. +
  228. +#if defined(DOS_OS2_W32) || defined(__human68k__)
  229. +#  ifndef DOS_H68_OS2_W32
  230. +#    define DOS_H68_OS2_W32
  231. +#  endif
  232.  #endif
  233. -#define CRYPT  0    /* dummy version */
  234.  
  235. -#define zencode
  236. -#define zdecode
  237. +#if defined(VM_CMS) || defined(MVS)
  238. +#  ifndef CMS_MVS
  239. +#    define CMS_MVS
  240. +#  endif
  241. +#endif
  242. +
  243. +#ifdef REALLY_SHORT_SYMS
  244. +#  define decrypt_byte   dcrbyt
  245. +#endif
  246. +
  247. +#define PWLEN  80   /* input buffer size for reading encryption key */
  248. +#define RAND_HEAD_LEN  12    /* length of encryption random header */
  249. +
  250. +/* the crc_32_tab array has to be provided externally for the crypt calculus */
  251. +#ifndef UNZIP                   /* UnZip provides this in globals.h */
  252. +   extern ulg near *crc_32_tab;
  253. +#ifdef WINDLL
  254. +   void DLLIMPORT(zcrypt_set_crc_32_tab) OF((ulg near *));
  255. +#endif
  256. +#endif /* !UNZIP */
  257. +
  258. +/* encode byte c, using temp t.  Warning: c must not have side effects. */
  259. +#define zencode(c,t)  (t=decrypt_byte(__G), update_keys(c), t^(c))
  260. +
  261. +/* decode byte c in place */
  262. +#define zdecode(c)   update_keys(__G__ c ^= decrypt_byte(__G))
  263. +int  DLLIMPORT(decrypt_byte) OF((__GPRO));
  264. +int  DLLIMPORT(update_keys) OF((__GPRO__ int c));
  265. +void DLLIMPORT(init_keys) OF((__GPRO__ char *passwd));
  266. +
  267. +#ifdef ZIP
  268. +   void crypthead OF((char *, ulg, FILE *));
  269. +#  ifdef UTIL
  270. +     int DLLIMPORT(zipcloak) OF((struct zlist far *, FILE *, FILE *, char *));
  271. +     int DLLIMPORT(zipbare) OF((__GPRO__ struct zlist far *, FILE *, FILE *, char *));
  272. +#  else
  273. +     unsigned zfwrite OF((zvoid *, extent, extent, FILE *));
  274. +     extern char *key;
  275. +#ifdef WINDLL
  276. +     void DLLIMPORT(zcrypt_set_key) OF((char *));
  277. +#endif
  278. +#  endif
  279. +#endif /* ZIP */
  280. +
  281. +#if (defined(UNZIP) && !defined(FUNZIP))
  282. +   int  DLLIMPORT(decrypt) OF((__GPRO));
  283. +#endif
  284. +
  285. +#ifdef FUNZIP
  286. +   extern int encrypted;
  287. +#ifdef WINDLL
  288. +   void DLLIMPORT(zcrypt_set_encrypted) OF((int));
  289. +#endif
  290. +#  ifdef NEXTBYTE
  291. +#    undef NEXTBYTE
  292. +#  endif
  293. +#  define NEXTBYTE \
  294. +   (encrypted? update_keys(__G__ getc(G.in)^decrypt_byte(__G)) : getc(G.in))
  295. +#endif /* FUNZIP */
  296.  
  297. -#define zfwrite  fwrite
  298.  
  299. +#endif    /* !CRYPT */
  300.  #endif /* !__crypt_h */
  301. diff -ruN zip22org/fileio.c zip22/fileio.c
  302. --- zip22org/fileio.c    Thu Oct  9 02:09:20 1997
  303. +++ zip22/fileio.c    Mon Nov 10 17:20:06 1997
  304. @@ -204,7 +204,13 @@
  305.          f = 12;                         /* now just excess characters */
  306.      else
  307.        if (f < 12 && f != 8)
  308. -      {
  309. +      {
  310. +#ifdef KANJI
  311. +          if(iskanji1(c) && iskanji2(*p)){
  312. +            *q++ = (char)(to_up(c));
  313. +            c  = (unsigned char)*p++;
  314. +          }
  315. +#endif
  316.          *q++ = (char)(to_up(c));
  317.          f++;                            /* do until end of name or type */
  318.        }
  319. @@ -276,15 +282,22 @@
  320.        if (patterns[n].select == 'R') {
  321.           /* With -R patterns, if the pattern has N path components (that is, */
  322.           /* N-1 slashes), then we test only the last N components of name.   */
  323. -         slashes = 0;
  324. +         
  325. +         /*slashes = 0;
  326.           for (q = patterns[n].zname; (q = strchr(q, '/')) != NULL; q++)
  327.              slashes++;
  328.           for (q = p + strlen(p); q > p; q--)
  329. -            if (q[-1] == '/')
  330. +             if (q[-1] == '/'){
  331.                 if (!slashes--) {
  332.                    p = q;
  333.                    break;
  334.                 }
  335. +             }
  336. +         */
  337. +          /* changed by tsuneo */
  338. +        if((q=strchr(patterns[n].zname,'/'))!=NULL){
  339. +            p=q+1;
  340. +        }
  341.        }
  342.        if (MATCH(patterns[n].zname, p)) {
  343.           if (patterns[n].select == 'x') return 0;
  344. diff -ruN zip22org/tmp1 zip22/tmp1
  345. --- zip22org/tmp1    Wed Dec 31 19:00:00 1969
  346. +++ zip22/tmp1    Mon Nov 10 18:47:06 1997
  347. @@ -0,0 +1,10 @@
  348. +util.c:         while (isspace(*envptr))           /* we must discard leading spaces */
  349. +util.c:             while (isspace(*envptr))
  350. +util.c:             while ((ch = *bufptr) != '\0' && !isspace(ch)) ++bufptr;
  351. +util.c:             while ((ch = *bufptr) != '\0' && !isspace(ch)) ++bufptr;
  352. +util.c:         while ((ch = *bufptr) != '\0' && !isspace(ch)) ++bufptr;
  353. +util.c:         while ((ch = *bufptr) != '\0' && isspace(ch)) ++bufptr;
  354. +util.c:             while ((ch = *s) != '\0' && !isspace(ch)) ++s;
  355. +util.c:             while ((ch = *s) != '\0' && !isspace(ch)) ++s;
  356. +util.c:         while ((ch = *s) != '\0' && !isspace(ch)) ++s;
  357. +util.c:         while ((ch = *s) != '\0' && isspace(ch)) ++s;
  358. diff -ruN zip22org/util.c zip22/util.c
  359. --- zip22org/util.c    Sat Aug 23 21:32:52 1997
  360. +++ zip22/util.c    Mon Nov 10 18:56:46 1997
  361. @@ -16,10 +16,12 @@
  362.  #include "ebcdic.h"
  363.  #include <ctype.h>
  364.  
  365. +
  366.  #ifdef MSDOS16
  367.  #  include <dos.h>
  368.  #endif
  369.  
  370. +
  371.  uch upper[256], lower[256];
  372.  /* Country-dependent case map table */
  373.  
  374. @@ -56,16 +58,25 @@
  375.  /* If p is a sh expression, a pointer to the first special character is
  376.     returned.  Otherwise, NULL is returned. */
  377.  {
  378. -  for (; *p; p++)
  379. -    if (*p == '\\' && *(p+1))
  380. -      p++;
  381. +    for (; *p; p++){
  382. +        if (*p == '\\' && *(p+1)){
  383. +            p++;
  384.  #ifdef VMS
  385. -    else if (*p == '%' || *p == '*')
  386. +        }else if (*p == '%' || *p == '*'){
  387.  #else /* !VMS */
  388. -    else if (*p == '?' || *p == '*' || *p == '[')
  389. +        }else if (*p == '?' || *p == '*' || *p == '['){
  390.  #endif /* ?VMS */
  391. -      return p;
  392. -  return NULL;
  393. +            return p;
  394. +        }
  395. +#ifdef KANJI
  396. +        if(iskanji1(*p) && iskanji2(*(p+1))){
  397. +            p++;
  398. +            continue;
  399. +        }
  400. +#endif
  401. +
  402. +    }
  403. +    return NULL;
  404.  }
  405.  
  406.  
  407. @@ -102,13 +113,21 @@
  408.    {
  409.      if (*p == 0)
  410.        return 1;
  411. -    for (; *s; s++)
  412. -      if ((c = recmatch(p, s)) != 0)
  413. -        return (int)c;
  414. +    for (; *s; s++){
  415. +        if ((c = recmatch(p, s)) != 0){
  416. +            return (int)c;
  417. +        }
  418. +#ifdef KANJI
  419. +        if(iskanji1(*s) && iskanji2(*(s+1))){
  420. +            s++;
  421. +            continue;
  422. +        }
  423. +#endif
  424. +    }
  425.      return 2;           /* 2 means give up--shmatch will return false */
  426.    }
  427.  
  428. -#ifndef VMS             /* No bracket matching in VMS */
  429. +#ifndef VMS           /* No bracket matching in VMS */
  430.    /* Parse and process the list of characters and ranges in brackets */
  431.    if (c == '[')
  432.    {
  433. @@ -405,11 +424,11 @@
  434.      /* see if anything in the environment */
  435.      envptr = getenv(envstr);
  436.      if (envptr != NULL)                                /* usual var */
  437. -        while (isspace(*envptr))           /* we must discard leading spaces */
  438. +        while (isspace((uch)*envptr))           /* we must discard leading spaces */
  439.              envptr++;
  440.      if (envptr == NULL || *envptr == '\0')
  441.          if ((envptr = getenv(envstr2)) != NULL)                 /* alternate */
  442. -            while (isspace(*envptr))
  443. +            while (isspace((uch)*envptr))
  444.                  envptr++;
  445.      if (envptr == NULL || *envptr == '\0')
  446.          return;
  447. @@ -451,7 +470,7 @@
  448.              }
  449.          } else {
  450.              *(argv++) = bufptr;
  451. -            while ((ch = *bufptr) != '\0' && !isspace(ch)) ++bufptr;
  452. +            while ((ch = *bufptr) != '\0' && !isspace((uch)ch)) ++bufptr;
  453.              if (ch != '\0') *(bufptr++) = '\0';
  454.          }
  455.  #else
  456. @@ -465,16 +484,16 @@
  457.              if (ch != '\0') *(bufptr++) = '\0';
  458.          } else {
  459.              *(argv++) = bufptr;
  460. -            while ((ch = *bufptr) != '\0' && !isspace(ch)) ++bufptr;
  461. +            while ((ch = *bufptr) != '\0' && !isspace((uch)ch)) ++bufptr;
  462.              if (ch != '\0') *(bufptr++) = '\0';
  463.          }
  464.  #  else
  465.          *(argv++) = bufptr;
  466. -        while ((ch = *bufptr) != '\0' && !isspace(ch)) ++bufptr;
  467. +        while ((ch = *bufptr) != '\0' && !isspace((uch)ch)) ++bufptr;
  468.          if (ch != '\0') *(bufptr++) = '\0';
  469.  #  endif
  470.  #endif /* ?(AMIGA || UNIX) */
  471. -        while ((ch = *bufptr) != '\0' && isspace(ch)) ++bufptr;
  472. +        while ((ch = *bufptr) != '\0' && isspace((uch)ch)) ++bufptr;
  473.      } while (ch);
  474.  
  475.      /* now save old argc and copy in the old args */
  476. @@ -505,20 +524,27 @@
  477.                      ++s;
  478.              if (*s) ++s;        /* trailing quote */
  479.          } else
  480. -            while ((ch = *s) != '\0' && !isspace(ch)) ++s;
  481. +            while ((ch = *s) != '\0' && !isspace((uch)ch)) ++s;
  482.  #else
  483.  #  ifdef WIN32
  484.          if (*s == '\"') {
  485.              ++s;                /* leading quote */
  486. -            while ((ch = *s) != '\0' && ch != '\"') ++s;
  487. +            while ((ch = *s) != '\0' && ch != '\"'){
  488. +#ifdef KANJI
  489. +                if(iskanji1(*s) && iskanji2(*(s+1))){
  490. +                    s++;
  491. +                }
  492. +#endif
  493. +                ++s;
  494. +            }
  495.              if (*s) ++s;        /* trailing quote */
  496.          } else
  497. -            while ((ch = *s) != '\0' && !isspace(ch)) ++s;
  498. +            while ((ch = *s) != '\0' && !isspace((uch)ch)) ++s;
  499.  #  else
  500. -        while ((ch = *s) != '\0' && !isspace(ch)) ++s;
  501. +        while ((ch = *s) != '\0' && !isspace((uch)ch)) ++s;
  502.  #  endif
  503.  #endif /* ?(AMIGA || UNIX) */
  504. -        while ((ch = *s) != '\0' && isspace(ch)) ++s;
  505. +        while ((ch = *s) != '\0' && isspace((uch)ch)) ++s;
  506.      } while (ch);
  507.  
  508.      return(count);
  509. diff -ruN zip22org/win32/win32zip.c zip22/win32/win32zip.c
  510. --- zip22org/win32/win32zip.c    Wed Aug 20 03:15:06 1997
  511. +++ zip22/win32/win32zip.c    Mon Nov 10 04:25:24 1997
  512. @@ -269,9 +269,15 @@
  513.      strcpy(p, w);
  514.  
  515.      /* Normalize path delimiter as '/' */
  516. -    for (q = p; *q; q++)                  /* use / consistently */
  517. +    for (q = p; *q; q++){                  /* use / consistently */
  518.          if (*q == '\\')
  519.              *q = '/';
  520. +#ifdef KANJI
  521. +        if(iskanji1(*q) && iskanji2(*(q+1))){
  522. +            q++;
  523. +        }
  524. +#endif
  525. +    }
  526.  
  527.      /* Separate the disk part of the path */
  528.      if ((q = strchr(p, ':')) != NULL) {
  529. @@ -332,9 +338,15 @@
  530.    }
  531.  
  532.    /* Live name--use if file, recurse if directory */
  533. -  for (p = n; *p; p++)          /* use / consistently */
  534. +  for (p = n; *p; p++){          /* use / consistently */
  535.      if (*p == '\\')
  536.        *p = '/';
  537. +#ifdef KANJI
  538. +    if(iskanji1(*p) && iskanji2(*(p+1))){
  539. +        p++;
  540. +    }
  541. +#endif
  542. +  }
  543.    if ((s.st_mode & S_IFDIR) == 0)
  544.    {
  545.      /* add or remove name of file */
  546. @@ -414,9 +426,15 @@
  547.      t += 2;
  548.  
  549.    /* Make changes, if any, to the copied name (leave original intact) */
  550. -  for (n = t; *n; n++)
  551. +  for (n = t; *n; n++){
  552.      if (*n == '\\')
  553.        *n = '/';
  554. +#ifdef KANJI
  555. +    if(iskanji1(*n) && iskanji2(*(n+1))){
  556. +        n++;
  557. +    }
  558. +#endif
  559. +  }
  560.  
  561.    if (!pathput)
  562.      t = last(t, PATH_END);
  563. diff -ruN zip22org/windll/windll32.def zip22/windll/windll32.def
  564. --- zip22org/windll/windll32.def    Thu Jul  3 23:46:28 1997
  565. +++ zip22/windll/windll32.def    Tue Jun  2 03:54:26 1998
  566. @@ -1,6 +1,7 @@
  567.  ;module-definition file for Windows Zip DLL -- used by link.exe
  568. -LIBRARY ZIP32 ; Library module name
  569. -DESCRIPTION 'Windows Info-ZIP Zip DLL 1.01 by Info-ZIP, Mike White 1997'
  570. +;LIBRARY ZIP32 ; Library module name
  571. +LIBRARY IZIP32J ; Library module name
  572. +DESCRIPTION 'Windows Info-ZIP Zip DLL 1.01 by Info-ZIP, Mike White 1997 / Japanese localization by Yoshioka Tsuneo.(1997-)'
  573.  
  574.  CODE  PRELOAD FIXED
  575.  
  576. @@ -12,4 +13,4 @@
  577.       ZpInit
  578.       ZpSetOptions
  579.       ZpGetOptions
  580. -
  581. +     IZip32JGetVersion
  582. diff -ruN zip22org/zip.c zip22/zip.c
  583. --- zip22org/zip.c    Mon Oct 27 00:04:22 1997
  584. +++ zip22/zip.c    Tue Jun  2 02:22:58 1998
  585. @@ -382,7 +382,8 @@
  586.  #  endif
  587.  #else /* !AMIGA */
  588.  #  if CRYPT
  589. -"  -e   encrypt                      -n   don't compress these suffixes"
  590. +"  -e   encrypt                      -n   don't compress these suffixes",
  591. +"  -P <password>      encrypt by <password>."
  592.  #  else
  593.  "  -h   show this help               -n   don't compress these suffixes"
  594.  #  endif
  595. @@ -1542,8 +1543,17 @@
  596.  
  597.  #if CRYPT
  598.    /* Initialize the crc_32_tab pointer, when encryption was requested. */
  599. -  if (key != NULL)
  600. +  if (key != NULL){
  601.      crc_32_tab = (ulg near *)get_crc_table();
  602. +#ifdef WINDLL
  603. +    if(ZCRYPT32DLLLoadLibrary()==-1){
  604. +        MessageBox(NULL,"Can't find ZCRYPT32.DLL","IZIP32J.DLL",0);
  605. +        ZIPERR(ZE_NONE,"Can't find ZCRYPT32.DLL");
  606. +    }
  607. +    zcrypt_set_crc_32_tab(crc_32_tab);
  608. +    zcrypt_set_key(key);
  609. +#endif
  610. +  }
  611.  #endif /* CRYPT */
  612.  
  613.    /* Before we get carried away, make sure zip file is writeable. This
  614. @@ -1685,6 +1695,7 @@
  615.            sprintf(errbuf, "was zipping %s", z->name);
  616.            ZIPERR(r, errbuf);
  617.          }
  618. +
  619.          if (r == ZE_OPEN || r == ZE_MISS)
  620.          {
  621.            o = 1;
  622. @@ -1776,6 +1787,7 @@
  623.      }
  624.      if ((r = zipup(z, y)) != ZE_OK  && r != ZE_OPEN && r != ZE_MISS)
  625.      {
  626. +
  627.        if (noisy)
  628.        {
  629.  #ifndef WINDLL
  630. @@ -1954,12 +1966,12 @@
  631.      zcomlen = strlen(zcomment);
  632.    }
  633.  
  634. -
  635.    /* Write central directory and end header to temporary zip */
  636.    diag("writing central directory");
  637.    k = 0;                        /* keep count for end header */
  638.    c = tempzn;                   /* get start of central */
  639.    n = t = 0;
  640. +    
  641.    for (z = zfiles; z != NULL; z = z->nxt)
  642.    {
  643.      if ((r = putcentral(z, y)) != ZE_OK) {
  644. diff -ruN zip22org/zip.h zip22/zip.h
  645. --- zip22org/zip.h    Sat Aug 23 21:33:00 1997
  646. +++ zip22/zip.h    Mon Nov 10 17:34:04 1997
  647. @@ -15,6 +15,18 @@
  648.  #ifndef __zip_h
  649.  #define __zip_h 1
  650.  
  651. +/* by tsuneo */
  652. +#define KANJI
  653. +#ifdef KANJI
  654. +#define UCH(c)  ((unsigned char)(c))
  655. +#define iskanji1(c) ((0x81<=UCH(c)&&UCH(c)<=0x9F)||(0xE0<=UCH(c)&&UCH(c)<=0xFC))
  656. +#define iskanji2(c) ((0x40<=UCH(c)&&UCH(c)<=0x7E)||(0x80<=UCH(c)&&UCH(c)<=0xFC))
  657. +/* multi byte charactor function (SJIS) (VC++) */
  658. +#define strrchr _mbsrchr
  659. +#define strchr _mbschr
  660. +#endif
  661. +
  662. +
  663.  #define ZIP   /* for crypt.c:  include zip password functions, not unzip */
  664.  
  665.  /* Set up portability */
  666. Binary files zip22org/zip32j1/aiueo.zip and zip22/zip32j1/aiueo.zip differ
  667. Binary files zip22org/zip32j1/debug/api.obj and zip22/zip32j1/debug/api.obj differ
  668. Binary files zip22org/zip32j1/debug/bits.obj and zip22/zip32j1/debug/bits.obj differ
  669. Binary files zip22org/zip32j1/debug/crc32.obj and zip22/zip32j1/debug/crc32.obj differ
  670. Binary files zip22org/zip32j1/debug/crctab.obj and zip22/zip32j1/debug/crctab.obj differ
  671. Binary files zip22org/zip32j1/debug/crypt.obj and zip22/zip32j1/debug/crypt.obj differ
  672. Binary files zip22org/zip32j1/debug/deflate.obj and zip22/zip32j1/debug/deflate.obj differ
  673. Binary files zip22org/zip32j1/debug/fileio.obj and zip22/zip32j1/debug/fileio.obj differ
  674. Binary files zip22org/zip32j1/debug/globals.obj and zip22/zip32j1/debug/globals.obj differ
  675. Binary files zip22org/zip32j1/debug/izip32j.exp and zip22/zip32j1/debug/izip32j.exp differ
  676. Binary files zip22org/zip32j1/debug/izip32j.lib and zip22/zip32j1/debug/izip32j.lib differ
  677. diff -ruN zip22org/zip32j1/debug/izip32j.pdb zip22/zip32j1/debug/izip32j.pdb
  678. --- zip22org/zip32j1/debug/izip32j.pdb    Wed Dec 31 19:00:00 1969
  679. +++ zip22/zip32j1/debug/izip32j.pdb    Tue Jun  2 03:55:44 1998
  680. @@ -0,0 +1 @@
  681. +Microsoft C/C++ program database 2.00
  682. Binary files zip22org/zip32j1/debug/izip32jv.obj and zip22/zip32j1/debug/izip32jv.obj differ
  683. Binary files zip22org/zip32j1/debug/mktime.obj and zip22/zip32j1/debug/mktime.obj differ
  684. Binary files zip22org/zip32j1/debug/nt.obj and zip22/zip32j1/debug/nt.obj differ
  685. Binary files zip22org/zip32j1/debug/trees.obj and zip22/zip32j1/debug/trees.obj differ
  686. Binary files zip22org/zip32j1/debug/ttyio.obj and zip22/zip32j1/debug/ttyio.obj differ
  687. Binary files zip22org/zip32j1/debug/util.obj and zip22/zip32j1/debug/util.obj differ
  688. diff -ruN zip22org/zip32j1/debug/vc50.idb zip22/zip32j1/debug/vc50.idb
  689. --- zip22org/zip32j1/debug/vc50.idb    Wed Dec 31 19:00:00 1969
  690. +++ zip22/zip32j1/debug/vc50.idb    Tue Jun  2 03:55:44 1998
  691. @@ -0,0 +1 @@
  692. +Microsoft C/C++ program database 2.00
  693. diff -ruN zip22org/zip32j1/debug/vc50.pdb zip22/zip32j1/debug/vc50.pdb
  694. --- zip22org/zip32j1/debug/vc50.pdb    Wed Dec 31 19:00:00 1969
  695. +++ zip22/zip32j1/debug/vc50.pdb    Tue Jun  2 03:55:38 1998
  696. @@ -0,0 +1 @@
  697. +Microsoft C/C++ program database 2.00
  698. Binary files zip22org/zip32j1/debug/win32.obj and zip22/zip32j1/debug/win32.obj differ
  699. Binary files zip22org/zip32j1/debug/win32zip.obj and zip22/zip32j1/debug/win32zip.obj differ
  700. Binary files zip22org/zip32j1/debug/windll.obj and zip22/zip32j1/debug/windll.obj differ
  701. Binary files zip22org/zip32j1/debug/zip.obj and zip22/zip32j1/debug/zip.obj differ
  702. Binary files zip22org/zip32j1/debug/zip32.exp and zip22/zip32j1/debug/zip32.exp differ
  703. Binary files zip22org/zip32j1/debug/zip32.lib and zip22/zip32j1/debug/zip32.lib differ
  704. diff -ruN zip22org/zip32j1/debug/zip32.pdb zip22/zip32j1/debug/zip32.pdb
  705. --- zip22org/zip32j1/debug/zip32.pdb    Wed Dec 31 19:00:00 1969
  706. +++ zip22/zip32j1/debug/zip32.pdb    Tue Jun  2 00:37:08 1998
  707. @@ -0,0 +1 @@
  708. +Microsoft C/C++ program database 2.00
  709. Binary files zip22org/zip32j1/debug/zip32j1.dll and zip22/zip32j1/debug/zip32j1.dll differ
  710. Binary files zip22org/zip32j1/debug/zip32j1.exp and zip22/zip32j1/debug/zip32j1.exp differ
  711. diff -ruN zip22org/zip32j1/debug/zip32j1.ilk zip22/zip32j1/debug/zip32j1.ilk
  712. --- zip22org/zip32j1/debug/zip32j1.ilk    Wed Dec 31 19:00:00 1969
  713. +++ zip22/zip32j1/debug/zip32j1.ilk    Tue Nov  4 16:26:10 1997
  714. @@ -0,0 +1,2 @@
  715. +Microsoft Linker Database
  716. +
  717. \ No newline at end of file
  718. Binary files zip22org/zip32j1/debug/zip32j1.lib and zip22/zip32j1/debug/zip32j1.lib differ
  719. Binary files zip22org/zip32j1/debug/zip32j1.pch and zip22/zip32j1/debug/zip32j1.pch differ
  720. diff -ruN zip22org/zip32j1/debug/zip32j1.pdb zip22/zip32j1/debug/zip32j1.pdb
  721. --- zip22org/zip32j1/debug/zip32j1.pdb    Wed Dec 31 19:00:00 1969
  722. +++ zip22/zip32j1/debug/zip32j1.pdb    Tue Nov  4 16:26:10 1997
  723. @@ -0,0 +1 @@
  724. +Microsoft C/C++ program database 2.00
  725. Binary files zip22org/zip32j1/debug/zipcloak.obj and zip22/zip32j1/debug/zipcloak.obj differ
  726. Binary files zip22org/zip32j1/debug/zipfile.obj and zip22/zip32j1/debug/zipfile.obj differ
  727. Binary files zip22org/zip32j1/debug/zipup.obj and zip22/zip32j1/debug/zipup.obj differ
  728. diff -ruN zip22org/zip32j1/izip32jv.c zip22/zip32j1/izip32jv.c
  729. --- zip22org/zip32j1/izip32jv.c    Wed Dec 31 19:00:00 1969
  730. +++ zip22/zip32j1/izip32jv.c    Tue Jun  2 03:54:34 1998
  731. @@ -0,0 +1,7 @@
  732. +#include <windows.h>
  733. +
  734. +#define IZIP32J_VERSION 4
  735. +int WINAPI IZip32JGetVersion(void)
  736. +{
  737. +    return IZIP32J_VERSION;
  738. +}
  739. Binary files zip22org/zip32j1/release/api.obj and zip22/zip32j1/release/api.obj differ
  740. Binary files zip22org/zip32j1/release/bits.obj and zip22/zip32j1/release/bits.obj differ
  741. Binary files zip22org/zip32j1/release/crc32.obj and zip22/zip32j1/release/crc32.obj differ
  742. Binary files zip22org/zip32j1/release/crctab.obj and zip22/zip32j1/release/crctab.obj differ
  743. Binary files zip22org/zip32j1/release/crypt.obj and zip22/zip32j1/release/crypt.obj differ
  744. Binary files zip22org/zip32j1/release/deflate.obj and zip22/zip32j1/release/deflate.obj differ
  745. Binary files zip22org/zip32j1/release/fileio.obj and zip22/zip32j1/release/fileio.obj differ
  746. Binary files zip22org/zip32j1/release/globals.obj and zip22/zip32j1/release/globals.obj differ
  747. Binary files zip22org/zip32j1/release/izip32j.exp and zip22/zip32j1/release/izip32j.exp differ
  748. Binary files zip22org/zip32j1/release/izip32j.lib and zip22/zip32j1/release/izip32j.lib differ
  749. Binary files zip22org/zip32j1/release/izip32jv.obj and zip22/zip32j1/release/izip32jv.obj differ
  750. Binary files zip22org/zip32j1/release/mktime.obj and zip22/zip32j1/release/mktime.obj differ
  751. Binary files zip22org/zip32j1/release/nt.obj and zip22/zip32j1/release/nt.obj differ
  752. Binary files zip22org/zip32j1/release/trees.obj and zip22/zip32j1/release/trees.obj differ
  753. Binary files zip22org/zip32j1/release/ttyio.obj and zip22/zip32j1/release/ttyio.obj differ
  754. Binary files zip22org/zip32j1/release/util.obj and zip22/zip32j1/release/util.obj differ
  755. diff -ruN zip22org/zip32j1/release/vc50.idb zip22/zip32j1/release/vc50.idb
  756. --- zip22org/zip32j1/release/vc50.idb    Wed Dec 31 19:00:00 1969
  757. +++ zip22/zip32j1/release/vc50.idb    Tue Jun  2 03:59:02 1998
  758. @@ -0,0 +1 @@
  759. +Microsoft C/C++ program database 2.00
  760. Binary files zip22org/zip32j1/release/win32.obj and zip22/zip32j1/release/win32.obj differ
  761. Binary files zip22org/zip32j1/release/win32zip.obj and zip22/zip32j1/release/win32zip.obj differ
  762. Binary files zip22org/zip32j1/release/windll.obj and zip22/zip32j1/release/windll.obj differ
  763. Binary files zip22org/zip32j1/release/zip.obj and zip22/zip32j1/release/zip.obj differ
  764. Binary files zip22org/zip32j1/release/zip32.exp and zip22/zip32j1/release/zip32.exp differ
  765. Binary files zip22org/zip32j1/release/zip32.lib and zip22/zip32j1/release/zip32.lib differ
  766. Binary files zip22org/zip32j1/release/zip32j1.pch and zip22/zip32j1/release/zip32j1.pch differ
  767. Binary files zip22org/zip32j1/release/zipfile.obj and zip22/zip32j1/release/zipfile.obj differ
  768. Binary files zip22org/zip32j1/release/zipup.obj and zip22/zip32j1/release/zipup.obj differ
  769. Binary files zip22org/zip32j1/zia04371 and zip22/zip32j1/zia04371 differ
  770. diff -ruN zip22org/zip32j1/zip32j1.dsp zip22/zip32j1/zip32j1.dsp
  771. --- zip22org/zip32j1/zip32j1.dsp    Wed Dec 31 19:00:00 1969
  772. +++ zip22/zip32j1/zip32j1.dsp    Tue Jun  2 03:59:22 1998
  773. @@ -0,0 +1,234 @@
  774. +# Microsoft Developer Studio Project File - Name="ZIP32J1" - Package Owner=<4>
  775. +# Microsoft Developer Studio Generated Build File, Format Version 5.00
  776. +# ** 編集しないでください **
  777. +
  778. +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
  779. +
  780. +CFG=ZIP32J1 - Win32 Debug
  781. +!MESSAGE これは有効なメイクファイルではありません。 このプロジェクトをビルドするためには NMAKE を使用してください。
  782. +!MESSAGE [メイクファイルのエクスポート] コマンドを使用して実行してください
  783. +!MESSAGE 
  784. +!MESSAGE NMAKE /f "ZIP32J1.MAK".
  785. +!MESSAGE 
  786. +!MESSAGE NMAKE の実行時に構成を指定できます
  787. +!MESSAGE コマンド ライン上でマクロの設定を定義します。例:
  788. +!MESSAGE 
  789. +!MESSAGE NMAKE /f "ZIP32J1.MAK" CFG="ZIP32J1 - Win32 Debug"
  790. +!MESSAGE 
  791. +!MESSAGE 選択可能なビルド モード:
  792. +!MESSAGE 
  793. +!MESSAGE "ZIP32J1 - Win32 Release" ("Win32 (x86) Dynamic-Link Library" 用)
  794. +!MESSAGE "ZIP32J1 - Win32 Debug" ("Win32 (x86) Dynamic-Link Library" 用)
  795. +!MESSAGE 
  796. +
  797. +# Begin Project
  798. +# PROP Scc_ProjName ""
  799. +# PROP Scc_LocalPath ""
  800. +CPP=cl.exe
  801. +MTL=midl.exe
  802. +RSC=rc.exe
  803. +
  804. +!IF  "$(CFG)" == "ZIP32J1 - Win32 Release"
  805. +
  806. +# PROP BASE Use_MFC 0
  807. +# PROP BASE Use_Debug_Libraries 0
  808. +# PROP BASE Output_Dir "Release"
  809. +# PROP BASE Intermediate_Dir "Release"
  810. +# PROP BASE Target_Dir ""
  811. +# PROP Use_MFC 0
  812. +# PROP Use_Debug_Libraries 0
  813. +# PROP Output_Dir "Release"
  814. +# PROP Intermediate_Dir "Release"
  815. +# PROP Ignore_Export_Lib 0
  816. +# PROP Target_Dir ""
  817. +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c
  818. +# ADD CPP /nologo /W3 /GX /O2 /I ".." /I "..\win32" /I "..\windll" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "NO_ASM" /D "WINDLL" /D "CRYPT" /YX /FD /c
  819. +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32
  820. +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32
  821. +# ADD BASE RSC /l 0x411 /d "NDEBUG"
  822. +# ADD RSC /l 0x411 /d "NDEBUG"
  823. +BSC32=bscmake.exe
  824. +# ADD BASE BSC32 /nologo
  825. +# ADD BSC32 /nologo
  826. +LINK32=link.exe
  827. +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386
  828. +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 /out:"c:\windows\system\izip32j.dll"
  829. +
  830. +!ELSEIF  "$(CFG)" == "ZIP32J1 - Win32 Debug"
  831. +
  832. +# PROP BASE Use_MFC 0
  833. +# PROP BASE Use_Debug_Libraries 1
  834. +# PROP BASE Output_Dir "Debug"
  835. +# PROP BASE Intermediate_Dir "Debug"
  836. +# PROP BASE Target_Dir ""
  837. +# PROP Use_MFC 0
  838. +# PROP Use_Debug_Libraries 1
  839. +# PROP Output_Dir "Debug"
  840. +# PROP Intermediate_Dir "Debug"
  841. +# PROP Ignore_Export_Lib 0
  842. +# PROP Target_Dir ""
  843. +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c
  844. +# ADD CPP /nologo /ML /W3 /Gm /GX /Zi /Od /I ".." /I "..\win32" /I "..\windll" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "NO_ASM" /D "WINDLL" /D "MSDOS" /D "USE_EF_UX_TIME" /D "USE_ZIPMAIN" /D "CRYPT" /YX /FD /c
  845. +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32
  846. +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32
  847. +# ADD BASE RSC /l 0x411 /d "_DEBUG"
  848. +# ADD RSC /l 0x411 /d "_DEBUG"
  849. +BSC32=bscmake.exe
  850. +# ADD BASE BSC32 /nologo
  851. +# ADD BSC32 /nologo
  852. +LINK32=link.exe
  853. +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept
  854. +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /out:"c:\windows\system\izip32j.dll" /pdbtype:sept
  855. +
  856. +!ENDIF 
  857. +
  858. +# Begin Target
  859. +
  860. +# Name "ZIP32J1 - Win32 Release"
  861. +# Name "ZIP32J1 - Win32 Debug"
  862. +# Begin Source File
  863. +
  864. +SOURCE=..\api.c
  865. +# End Source File
  866. +# Begin Source File
  867. +
  868. +SOURCE=..\api.h
  869. +# End Source File
  870. +# Begin Source File
  871. +
  872. +SOURCE=..\bits.c
  873. +# End Source File
  874. +# Begin Source File
  875. +
  876. +SOURCE=..\crc32.c
  877. +# End Source File
  878. +# Begin Source File
  879. +
  880. +SOURCE=..\crctab.c
  881. +# End Source File
  882. +# Begin Source File
  883. +
  884. +SOURCE=..\crypt.c
  885. +# End Source File
  886. +# Begin Source File
  887. +
  888. +SOURCE=..\crypt.h
  889. +# End Source File
  890. +# Begin Source File
  891. +
  892. +SOURCE=..\deflate.c
  893. +# End Source File
  894. +# Begin Source File
  895. +
  896. +SOURCE=..\ebcdic.h
  897. +# End Source File
  898. +# Begin Source File
  899. +
  900. +SOURCE=..\windll\example.h
  901. +# End Source File
  902. +# Begin Source File
  903. +
  904. +SOURCE=..\fileio.c
  905. +# End Source File
  906. +# Begin Source File
  907. +
  908. +SOURCE=..\globals.c
  909. +# End Source File
  910. +# Begin Source File
  911. +
  912. +SOURCE=.\Izip32jv.c
  913. +# End Source File
  914. +# Begin Source File
  915. +
  916. +SOURCE=..\mktime.c
  917. +# End Source File
  918. +# Begin Source File
  919. +
  920. +SOURCE=..\win32\nt.c
  921. +# End Source File
  922. +# Begin Source File
  923. +
  924. +SOURCE=..\win32\nt.h
  925. +# End Source File
  926. +# Begin Source File
  927. +
  928. +SOURCE=..\revision.h
  929. +# End Source File
  930. +# Begin Source File
  931. +
  932. +SOURCE=..\windll\structs.h
  933. +# End Source File
  934. +# Begin Source File
  935. +
  936. +SOURCE=..\tailor.h
  937. +# End Source File
  938. +# Begin Source File
  939. +
  940. +SOURCE=..\trees.c
  941. +# End Source File
  942. +# Begin Source File
  943. +
  944. +SOURCE=..\ttyio.c
  945. +# End Source File
  946. +# Begin Source File
  947. +
  948. +SOURCE=..\ttyio.h
  949. +# End Source File
  950. +# Begin Source File
  951. +
  952. +SOURCE=..\util.c
  953. +# End Source File
  954. +# Begin Source File
  955. +
  956. +SOURCE=..\win32\win32.c
  957. +# End Source File
  958. +# Begin Source File
  959. +
  960. +SOURCE=..\win32\win32zip.c
  961. +# End Source File
  962. +# Begin Source File
  963. +
  964. +SOURCE=..\win32\win32zip.h
  965. +# End Source File
  966. +# Begin Source File
  967. +
  968. +SOURCE=..\windll\windll.c
  969. +# End Source File
  970. +# Begin Source File
  971. +
  972. +SOURCE=..\windll\windll.h
  973. +# End Source File
  974. +# Begin Source File
  975. +
  976. +SOURCE=..\windll\windll32.def
  977. +# End Source File
  978. +# Begin Source File
  979. +
  980. +SOURCE=..\zip.c
  981. +# End Source File
  982. +# Begin Source File
  983. +
  984. +SOURCE=..\zip.h
  985. +# End Source File
  986. +# Begin Source File
  987. +
  988. +SOURCE=..\ziperr.h
  989. +# End Source File
  990. +# Begin Source File
  991. +
  992. +SOURCE=..\zipfile.c
  993. +# End Source File
  994. +# Begin Source File
  995. +
  996. +SOURCE=..\zipup.c
  997. +# End Source File
  998. +# Begin Source File
  999. +
  1000. +SOURCE=..\win32\zipup.h
  1001. +# End Source File
  1002. +# Begin Source File
  1003. +
  1004. +SOURCE=..\windll\zipver.h
  1005. +# End Source File
  1006. +# End Target
  1007. +# End Project
  1008. diff -ruN zip22org/zip32j1/zip32j1.dsw zip22/zip32j1/zip32j1.dsw
  1009. --- zip22org/zip32j1/zip32j1.dsw    Wed Dec 31 19:00:00 1969
  1010. +++ zip22/zip32j1/zip32j1.dsw    Tue Jun  2 01:00:02 1998
  1011. @@ -0,0 +1,41 @@
  1012. +Microsoft Developer Studio Workspace File, Format Version 5.00
  1013. +# 警告: このワークスペース ファイル を編集または削除しないでください!
  1014. +
  1015. +###############################################################################
  1016. +
  1017. +Project: "ZIP32J1"=.\ZIP32J1.DSP - Package Owner=<4>
  1018. +
  1019. +Package=<5>
  1020. +{{{
  1021. +}}}
  1022. +
  1023. +Package=<4>
  1024. +{{{
  1025. +}}}
  1026. +
  1027. +###############################################################################
  1028. +
  1029. +Project: "minizip"=..\..\ZIP32J\minizip\minizip.dsp - Package Owner=<4>
  1030. +
  1031. +Package=<5>
  1032. +{{{
  1033. +}}}
  1034. +
  1035. +Package=<4>
  1036. +{{{
  1037. +}}}
  1038. +
  1039. +###############################################################################
  1040. +
  1041. +Global:
  1042. +
  1043. +Package=<5>
  1044. +{{{
  1045. +}}}
  1046. +
  1047. +Package=<3>
  1048. +{{{
  1049. +}}}
  1050. +
  1051. +###############################################################################
  1052. +
  1053. diff -ruN zip22org/zip32j1/zip32j1.ncb zip22/zip32j1/zip32j1.ncb
  1054. --- zip22org/zip32j1/zip32j1.ncb    Wed Dec 31 19:00:00 1969
  1055. +++ zip22/zip32j1/zip32j1.ncb    Tue Jun  2 04:18:10 1998
  1056. @@ -0,0 +1 @@
  1057. +Microsoft C/C++ program database 2.00
  1058. diff -ruN zip22org/zip32j1/zip32j1.opt zip22/zip32j1/zip32j1.opt
  1059. --- zip22org/zip32j1/zip32j1.opt    Wed Dec 31 19:00:00 1969
  1060. +++ zip22/zip32j1/zip32j1.opt    Tue Jun  2 04:18:12 1998
  1061. @@ -0,0 +1 @@
  1062. +ミマ爍ア
  1063. \ No newline at end of file
  1064. diff -ruN zip22org/zip32j1/zip32j1.plg zip22/zip32j1/zip32j1.plg
  1065. --- zip22org/zip32j1/zip32j1.plg    Wed Dec 31 19:00:00 1969
  1066. +++ zip22/zip32j1/zip32j1.plg    Tue Jun  2 03:59:02 1998
  1067. @@ -0,0 +1,68 @@
  1068. +--------------------構成: ZIP32J1 - Win32 Release--------------------
  1069. +Begining build with project "C:\HOME\LANG\VC5\ZIP22\ZIP32J1\ZIP32J1.DSP", at root.
  1070. +Active configuration is Win32 (x86) Dynamic-Link Library (based on Win32 (x86) Dynamic-Link Library)
  1071. +
  1072. +Project's tools are:
  1073. +            "32-bit C/C++ Compiler for 80x86" with flags "/nologo /ML /W3 /GX /O2 /I ".." /I "..\win32" /I "..\windll" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "NO_ASM" /D "WINDLL" /D "CRYPT" /Fp"Release/ZIP32J1.pch" /YX /Fo"Release/" /Fd"Release/" /FD /c "
  1074. +            "OLE Type Library Maker" with flags "/nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 "
  1075. +            "Win32 Resource Compiler" with flags "/l 0x411 /d "NDEBUG" "
  1076. +            "Browser Database Maker" with flags "/nologo /o"Release/ZIP32J1.bsc" "
  1077. +            "COFF Linker for 80x86" with flags "kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /incremental:no /pdb:"Release/izip32j.pdb" /machine:I386 /def:"..\windll\windll32.def" /out:"c:\windows\system\izip32j.dll" /implib:"Release/izip32j.lib" "
  1078. +            "カスタム ビルド" with flags ""
  1079. +            "<Component 0xa>" with flags ""
  1080. +
  1081. +Creating temp file "C:\TMP\RSPA1F0.TMP" with contents </nologo /ML /W3 /GX /O2 /I ".." /I "..\win32" /I "..\windll" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "NO_ASM" /D "WINDLL" /D "CRYPT" /Fp"Release/ZIP32J1.pch" /YX /Fo"Release/" /Fd"Release/" /FD /c 
  1082. +"C:\HOME\LANG\VC5\ZIP22\api.c"
  1083. +"C:\HOME\LANG\VC5\ZIP22\bits.c"
  1084. +"C:\HOME\LANG\VC5\ZIP22\crypt.c"
  1085. +"C:\HOME\LANG\VC5\ZIP22\ttyio.c"
  1086. +"C:\HOME\LANG\VC5\ZIP22\zip.c"
  1087. +"C:\HOME\LANG\VC5\ZIP22\zipup.c"
  1088. +>
  1089. +Creating command line "cl.exe @C:\TMP\RSPA1F0.TMP" 
  1090. +Creating temp file "C:\TMP\RSPA1F1.TMP" with contents <kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /incremental:no /pdb:"Release/izip32j.pdb" /machine:I386 /def:"..\windll\windll32.def" /out:"c:\windows\system\izip32j.dll" /implib:"Release/izip32j.lib" 
  1091. +.\Release\api.obj
  1092. +.\Release\bits.obj
  1093. +.\Release\crc32.obj
  1094. +.\Release\crctab.obj
  1095. +.\Release\crypt.obj
  1096. +.\Release\deflate.obj
  1097. +.\Release\fileio.obj
  1098. +.\Release\globals.obj
  1099. +.\Release\mktime.obj
  1100. +.\Release\nt.obj
  1101. +.\Release\trees.obj
  1102. +.\Release\ttyio.obj
  1103. +.\Release\util.obj
  1104. +.\Release\win32.obj
  1105. +.\Release\win32zip.obj
  1106. +.\Release\windll.obj
  1107. +.\Release\zip.obj
  1108. +.\Release\zipfile.obj
  1109. +.\Release\zipup.obj
  1110. +.\Release\Izip32jv.obj>
  1111. +Creating command line "link.exe @C:\TMP\RSPA1F1.TMP" 
  1112. +コンパイル中...
  1113. +api.c
  1114. +bits.c
  1115. +crypt.c
  1116. +C:\HOME\LANG\VC5\ZIP22\crypt.c(49) : warning C4113: 'int (__stdcall *)(void)' はパラメ-タ リストが 'int (__stdcall *)(char ,int *)' と異なります。
  1117. +C:\HOME\LANG\VC5\ZIP22\crypt.c(50) : warning C4113: 'int (__stdcall *)(void)' はパラメ-タ リストが 'void (__stdcall *)(char *,int )' と異なります。
  1118. +C:\HOME\LANG\VC5\ZIP22\crypt.c(52) : warning C4113: 'int (__stdcall *)(void)' はパラメ-タ リストが 'void (__stdcall *)(unsigned long *)' と異なります。
  1119. +C:\HOME\LANG\VC5\ZIP22\crypt.c(54) : warning C4113: 'int (__stdcall *)(void)' はパラメ-タ リストが 'int (__stdcall *)(void )' と異なります。
  1120. +C:\HOME\LANG\VC5\ZIP22\crypt.c(55) : warning C4113: 'int (__stdcall *)(void)' はパラメ-タ リストが 'int (__stdcall *)(int )' と異なります。
  1121. +C:\HOME\LANG\VC5\ZIP22\crypt.c(56) : warning C4113: 'int (__stdcall *)(void)' はパラメ-タ リストが 'void (__stdcall *)(char *)' と異なります。
  1122. +C:\HOME\LANG\VC5\ZIP22\crypt.c(64) : warning C4113: 'int (__stdcall *)(void)' はパラメ-タ リストが 'void (__stdcall *)(char *)' と異なります。
  1123. +C:\HOME\LANG\VC5\ZIP22\crypt.c(142) : warning C4101: 't' : ローカル変数は 1 度も使われません。
  1124. +C:\HOME\LANG\VC5\ZIP22\crypt.c(142) : warning C4101: 'size' : ローカル変数は 1 度も使われません。
  1125. +ttyio.c
  1126. +zip.c
  1127. +zipup.c
  1128. +リンク中...
  1129. +..\windll\windll32.def : warning LNK4017: CODE 文はターゲット プラットフォームでサポートされていません; 無視しました
  1130. +..\windll\windll32.def : warning LNK4017: DATA 文はターゲット プラットフォームでサポートされていません; 無視しました
  1131. +   ライブラリ Release/izip32j.lib とオブジェクト Release/izip32j.exp を作成中
  1132. +
  1133. +
  1134. +
  1135. +izip32j.dll - エラー 0、警告 11
  1136. diff -ruN zip22org/zipfile.c zip22/zipfile.c
  1137. --- zip22org/zipfile.c    Mon Oct 27 00:04:22 1997
  1138. +++ zip22/zipfile.c    Mon Nov 10 04:25:26 1997
  1139. @@ -178,9 +178,15 @@
  1140.    _toslash(t);
  1141.  #endif
  1142.  #ifdef MSDOS
  1143. -  for (q = t; *q; q++)
  1144. +  for (q = t; *q; q++){
  1145.      if (*q == '\\')
  1146.        *q = '/';
  1147. +#ifdef KANJI
  1148. +    if(iskanji1(*q) && iskanji2(*q+1)){
  1149. +        q++;
  1150. +    }
  1151. +#endif
  1152. +  }
  1153.  #endif /* MSDOS */
  1154.    if (adjust) return t;
  1155.  #ifndef RISCOS
  1156.