You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(42) |
Nov
(368) |
Dec
(248) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(2) |
Feb
(207) |
Mar
(180) |
Apr
(9) |
May
(39) |
Jun
(9) |
Jul
(22) |
Aug
(56) |
Sep
(82) |
Oct
(113) |
Nov
(236) |
Dec
(219) |
2005 |
Jan
(119) |
Feb
(81) |
Mar
(53) |
Apr
(177) |
May
(2) |
Jun
(67) |
Jul
(17) |
Aug
(5) |
Sep
(53) |
Oct
(17) |
Nov
(122) |
Dec
(77) |
2006 |
Jan
(293) |
Feb
(16) |
Mar
(32) |
Apr
(14) |
May
(29) |
Jun
(6) |
Jul
|
Aug
|
Sep
(18) |
Oct
(28) |
Nov
|
Dec
(2) |
2007 |
Jan
(8) |
Feb
(19) |
Mar
(4) |
Apr
(7) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(37) |
Oct
(1) |
Nov
(8) |
Dec
(25) |
2008 |
Jan
(1) |
Feb
(13) |
Mar
(17) |
Apr
(3) |
May
(2) |
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
(10) |
Nov
(19) |
Dec
(16) |
2009 |
Jan
(6) |
Feb
(9) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Rolf K. <lab...@us...> - 2007-09-17 05:07:26
|
Update of /cvsroot/opengtoolkit/lvzip/source In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv31009/source Modified Files: lvzlib.dll Log Message: Addition of memory stream for ZIP file Index: lvzlib.dll =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzlib.dll,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 Binary files /tmp/cvsXbvZhE and /tmp/cvsLEydXJ differ |
From: Rolf K. <lab...@us...> - 2007-09-17 05:07:26
|
Update of /cvsroot/opengtoolkit/lvzip/tests In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv31009/tests Modified Files: lvzip-test-sm text files.vi Added Files: lvzip-test-memory stream.vi Log Message: Addition of memory stream for ZIP file --- NEW FILE: lvzip-test-memory stream.vi --- (This appears to be a binary file; contents omitted.) Index: lvzip-test-sm text files.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/tests/lvzip-test-sm text files.vi,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 Binary files /tmp/cvs6lAiiJ and /tmp/cvsRUit0O differ |
Update of /cvsroot/opengtoolkit/lvzip/c_source In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv31009/c_source Modified Files: ioapi.c ioapi.h iomem.c iowin32.c macbin.c macbin.h unzip.c zip.c zip.h zlibvc.def Log Message: Addition of memory stream for ZIP file Index: macbin.c =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/macbin.c,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** macbin.c 16 Sep 2007 14:26:17 -0000 1.28 --- macbin.c 17 Sep 2007 05:07:16 -0000 1.29 *************** *** 955,965 **** } ! extern long ZEXPORT InitializeFileFuncs (zlib_filefunc_def* pzlib_filefunc_def, LStrHandle memory) { if (pzlib_filefunc_def) { if (memory) fill_mem_filefunc(pzlib_filefunc_def, memory); ! else #if Win32 fill_win32_filefunc(pzlib_filefunc_def); --- 955,969 ---- } ! extern long ZEXPORT InitializeFileFuncs (zlib_filefunc_def* pzlib_filefunc_def, LStrHandle *memory) { if (pzlib_filefunc_def) { if (memory) + { fill_mem_filefunc(pzlib_filefunc_def, memory); ! *memory = NULL; ! } ! else ! { #if Win32 fill_win32_filefunc(pzlib_filefunc_def); *************** *** 967,970 **** --- 971,975 ---- fill_fopen_filefunc(pzlib_filefunc_def); #endif + } return noErr; } Index: zip.c =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/zip.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** zip.c 2 Apr 2007 21:11:48 -0000 1.8 --- zip.c 17 Sep 2007 05:07:16 -0000 1.9 *************** *** 29,32 **** --- 29,33 ---- #endif + #include "macbin.h" #ifndef local *************** *** 536,540 **** if (zi==NULL) { ! ZCLOSE(ziinit.z_filefunc,ziinit.filestream); return NULL; } --- 537,541 ---- if (zi==NULL) { ! ZCLOSE(ziinit.z_filefunc,ziinit.filestream, NULL); return NULL; } *************** *** 613,617 **** if (err!=ZIP_OK) { ! ZCLOSE(ziinit.z_filefunc, ziinit.filestream); return NULL; } --- 614,618 ---- if (err!=ZIP_OK) { ! ZCLOSE(ziinit.z_filefunc, ziinit.filestream, NULL); return NULL; } *************** *** 720,727 **** int err = ZIP_OK; ! # ifdef NOCRYPT if (password != NULL) return ZIP_PARAMERROR; ! # endif if (file == NULL) --- 721,730 ---- int err = ZIP_OK; ! #ifdef NOCRYPT if (password != NULL) return ZIP_PARAMERROR; ! #endif ! ! DoDebugger(); if (file == NULL) *************** *** 1134,1140 **** } ! extern int ZEXPORT zipClose (file, global_comment) zipFile file; const char* global_comment; { zip_internal* zi; --- 1137,1144 ---- } ! extern int ZEXPORT zipClose2 (file, global_comment, output) zipFile file; const char* global_comment; + voidpf output; { zip_internal* zi; *************** *** 1210,1214 **** err = ZIP_ERRNO; ! if (ZCLOSE(zi->z_filefunc,zi->filestream) != 0) if (err == ZIP_OK) err = ZIP_ERRNO; --- 1214,1218 ---- err = ZIP_ERRNO; ! if (ZCLOSE(zi->z_filefunc,zi->filestream, output) != 0) if (err == ZIP_OK) err = ZIP_ERRNO; *************** *** 1221,1222 **** --- 1225,1233 ---- return err; } + + extern int ZEXPORT zipClose (file, global_comment) + zipFile file; + const char* global_comment; + { + return zipClose2(file, global_comment, NULL); + } \ No newline at end of file Index: ioapi.h =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/ioapi.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ioapi.h 7 Jan 2006 20:06:23 -0000 1.5 --- ioapi.h 17 Sep 2007 05:07:16 -0000 1.6 *************** *** 41,45 **** typedef long (ZCALLBACK *tell_file_func) OF((voidpf opaque, voidpf stream)); typedef long (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int origin)); ! typedef int (ZCALLBACK *close_file_func) OF((voidpf opaque, voidpf stream)); typedef int (ZCALLBACK *testerror_file_func) OF((voidpf opaque, voidpf stream)); --- 41,45 ---- typedef long (ZCALLBACK *tell_file_func) OF((voidpf opaque, voidpf stream)); typedef long (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int origin)); ! typedef int (ZCALLBACK *close_file_func) OF((voidpf opaque, voidpf stream, voidpf output)); typedef int (ZCALLBACK *testerror_file_func) OF((voidpf opaque, voidpf stream)); *************** *** 64,68 **** #define ZTELL(filefunc,filestream) ((*((filefunc).ztell_file))((filefunc).opaque,filestream)) #define ZSEEK(filefunc,filestream,pos,mode) ((*((filefunc).zseek_file))((filefunc).opaque,filestream,pos,mode)) ! #define ZCLOSE(filefunc,filestream) ((*((filefunc).zclose_file))((filefunc).opaque,filestream)) #define ZERROR(filefunc,filestream) ((*((filefunc).zerror_file))((filefunc).opaque,filestream)) --- 64,68 ---- #define ZTELL(filefunc,filestream) ((*((filefunc).ztell_file))((filefunc).opaque,filestream)) #define ZSEEK(filefunc,filestream,pos,mode) ((*((filefunc).zseek_file))((filefunc).opaque,filestream,pos,mode)) ! #define ZCLOSE(filefunc,filestream,output) ((*((filefunc).zclose_file))((filefunc).opaque,filestream,output)) #define ZERROR(filefunc,filestream) ((*((filefunc).zerror_file))((filefunc).opaque,filestream)) Index: macbin.h =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/macbin.h,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** macbin.h 16 Sep 2007 14:26:17 -0000 1.21 --- macbin.h 17 Sep 2007 05:07:16 -0000 1.22 *************** *** 268,272 **** uInt32 denyMode)); ! extern long ZEXPORT InitializeFileFuncs OF((zlib_filefunc_def* pzlib_filefunc_def, LStrHandle memory)); #ifdef __cplusplus --- 268,272 ---- uInt32 denyMode)); ! extern long ZEXPORT InitializeFileFuncs OF((zlib_filefunc_def* pzlib_filefunc_def, LStrHandle *memory)); #ifdef __cplusplus Index: iowin32.c =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/iowin32.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** iowin32.c 7 Jan 2006 20:06:23 -0000 1.5 --- iowin32.c 17 Sep 2007 05:07:16 -0000 1.6 *************** *** 51,55 **** int ZCALLBACK win32_close_file_func OF(( voidpf opaque, ! voidpf stream)); int ZCALLBACK win32_error_file_func OF(( --- 51,56 ---- int ZCALLBACK win32_close_file_func OF(( voidpf opaque, ! voidpf stream, ! voidpf output)); int ZCALLBACK win32_error_file_func OF(( *************** *** 225,231 **** } ! int ZCALLBACK win32_close_file_func (opaque, stream) voidpf opaque; voidpf stream; { int ret=-1; --- 226,233 ---- } ! int ZCALLBACK win32_close_file_func (opaque, stream, output) voidpf opaque; voidpf stream; + voidpf output; { int ret=-1; Index: zip.h =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/zip.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** zip.h 7 Jan 2006 20:06:23 -0000 1.5 --- zip.h 17 Sep 2007 05:07:16 -0000 1.6 *************** *** 227,234 **** --- 227,238 ---- extern int ZEXPORT zipClose OF((zipFile file, const char* global_comment)); + + extern int ZEXPORT zipClose2 OF((zipFile file, + const char* global_comment, voidpf stream)); /* Close the zipfile */ + #ifdef __cplusplus } Index: zlibvc.def =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/zlibvc.def,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** zlibvc.def 25 Oct 2006 08:58:37 -0000 1.15 --- zlibvc.def 17 Sep 2007 05:07:16 -0000 1.16 *************** *** 91,94 **** --- 91,95 ---- zipOpen2 @87 zipOpenNewFileInZip3 @88 + zipClose2 @89 unzGetFilePos @100 Index: unzip.c =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/unzip.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** unzip.c 2 Apr 2007 21:11:48 -0000 1.6 --- unzip.c 17 Sep 2007 05:07:16 -0000 1.7 *************** *** 483,487 **** if (err!=UNZ_OK) { ! ZCLOSE(us.z_filefunc, us.filestream); return NULL; } --- 483,487 ---- if (err!=UNZ_OK) { ! ZCLOSE(us.z_filefunc, us.filestream, NULL); return NULL; } *************** *** 523,527 **** unzCloseCurrentFile(file); ! ZCLOSE(s->z_filefunc, s->filestream); TRYFREE(s); return UNZ_OK; --- 523,527 ---- unzCloseCurrentFile(file); ! ZCLOSE(s->z_filefunc, s->filestream, NULL); TRYFREE(s); return UNZ_OK; Index: iomem.c =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/iomem.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** iomem.c 16 Sep 2007 15:08:05 -0000 1.2 --- iomem.c 17 Sep 2007 05:07:16 -0000 1.3 *************** *** 39,43 **** int ZCALLBACK mem_close_file_func OF(( voidpf opaque, ! voidpf stream)); int ZCALLBACK mem_error_file_func OF(( --- 39,44 ---- int ZCALLBACK mem_close_file_func OF(( voidpf opaque, ! voidpf stream, ! voidpf output)); int ZCALLBACK mem_error_file_func OF(( *************** *** 66,70 **** memio.pos = 0; else ! memio.pos = LStrLen(*(LStrHandle)opaque); memio.error = 0; ret = malloc(sizeof(MEMORY_IO)); --- 67,71 ---- memio.pos = 0; else ! memio.pos = LStrLen(**(LStrHandle*)opaque); memio.error = 0; ret = malloc(sizeof(MEMORY_IO)); *************** *** 88,96 **** MEMORY_IO* mem = (MEMORY_IO*)stream; uLong pos = mem->pos; ! ret = LStrLen(*(LStrHandle)opaque) - pos; if (size < ret) ret = size; ! zmemcpy(buf, LStrBuf(*(LStrHandle)opaque) + pos, ret); mem->pos += ret; } --- 89,97 ---- MEMORY_IO* mem = (MEMORY_IO*)stream; uLong pos = mem->pos; ! ret = LStrLen(**(LStrHandle*)opaque) - pos; if (size < ret) ret = size; ! zmemcpy(buf, LStrBuf(**(LStrHandle*)opaque) + pos, ret); mem->pos += ret; } *************** *** 108,118 **** uLong pos = 0; if (stream != NULL && (mem->mode & ZLIB_FILEFUNC_MODE_WRITE)) { pos = mem->pos; ! if ((uLong)LStrLen(*(LStrHandle)opaque) < pos + size) { int err; ! if (err = NumericArrayResize(uB, 1, &(UHandle)opaque, pos + size)) { mem->error = err; --- 109,122 ---- uLong pos = 0; + DoDebugger(); if (stream != NULL && (mem->mode & ZLIB_FILEFUNC_MODE_WRITE)) { pos = mem->pos; ! if ((*(LStrHandle*)opaque) || ! ((uLong)LStrLen(**(LStrHandle*)opaque) < (pos + size))) { int err; ! ! if (err = NumericArrayResize(uB, 1, (UHandle*)opaque, pos + size)) { mem->error = err; *************** *** 120,124 **** } } ! zmemcpy(LStrBuf(*(LStrHandle)opaque) + pos, buf, size); mem->pos += size; pos = size; --- 124,129 ---- } } ! zmemcpy(LStrBuf(**(LStrHandle*)opaque) + pos, buf, size); ! LStrLen(**(LStrHandle*)opaque) = size; mem->pos += size; pos = size; *************** *** 157,161 **** break; case ZLIB_FILEFUNC_SEEK_END : ! pos = LStrLen(*(LStrHandle)opaque) + offset; break; case ZLIB_FILEFUNC_SEEK_SET : --- 162,166 ---- break; case ZLIB_FILEFUNC_SEEK_END : ! pos = LStrLen(**(LStrHandle*)opaque) + offset; break; case ZLIB_FILEFUNC_SEEK_SET : *************** *** 166,180 **** } ! if (pos > LStrLen(*(LStrHandle)opaque)) { if (mem->mode & ZLIB_FILEFUNC_MODE_WRITE) { MgErr err; ! if (err = NumericArrayResize(uB, 1, &(UHandle)opaque, pos)) { mem->error = err; return -1; } ! } else return -1; --- 171,186 ---- } ! if (!(*(LStrHandle*)opaque) || (pos > LStrLen(**(LStrHandle*)opaque))) { if (mem->mode & ZLIB_FILEFUNC_MODE_WRITE) { MgErr err; ! if (err = NumericArrayResize(uB, 1, (UHandle*)opaque, pos)) { mem->error = err; return -1; } ! LStrLen(**(LStrHandle*)opaque) = pos; ! } else return -1; *************** *** 186,198 **** } ! int ZCALLBACK mem_close_file_func (opaque, stream) voidpf opaque; voidpf stream; { ! int ret=-1; if (stream != NULL) { free(stream); } return ret; --- 192,216 ---- } ! int ZCALLBACK mem_close_file_func (opaque, stream, output) voidpf opaque; voidpf stream; + voidpf output; { ! int ret = -1; ! ! if (output) ! { ! UHandle *p = (UHandle*)output; ! if (*p) ! DSDisposeHandle(*p); ! *p = *(UHandle*)opaque; ! } ! else ! DSDisposeHandle(*(UHandle*)opaque); if (stream != NULL) { free(stream); + ret = 0; } return ret; Index: ioapi.c =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/ioapi.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ioapi.c 7 Jan 2006 20:06:23 -0000 1.5 --- ioapi.c 17 Sep 2007 05:07:16 -0000 1.6 *************** *** 59,63 **** int ZCALLBACK fclose_file_func OF(( voidpf opaque, ! voidpf stream)); int ZCALLBACK ferror_file_func OF(( --- 59,64 ---- int ZCALLBACK fclose_file_func OF(( voidpf opaque, ! voidpf stream, ! voidpf output)); int ZCALLBACK ferror_file_func OF(( *************** *** 146,152 **** } ! int ZCALLBACK fclose_file_func (opaque, stream) voidpf opaque; voidpf stream; { int ret; --- 147,154 ---- } ! int ZCALLBACK fclose_file_func (opaque, stream, output) voidpf opaque; voidpf stream; + voidpf output; { int ret; |
From: Rolf K. <lab...@us...> - 2007-09-16 15:11:57
|
Update of /cvsroot/opengtoolkit/lvzip In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv29526 Modified Files: Change-Log.txt lvzip.ogbld lvzip.ogpb lvzip.spec Log Message: Addition of memory stream for ZIP file Index: lvzip.spec =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/lvzip.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** lvzip.spec 1 Mar 2006 15:02:25 -0000 1.22 --- lvzip.spec 16 Sep 2007 15:11:58 -0000 1.23 *************** *** 1,12 **** [Package Name] Name=oglib_lvzip ! Version=2.3 Release=1 [Description] ! Description="The lvzip package contains several routines for operating on zip files.\0D\0A\0D\0AVersion 2.2 adds support for appending files to an existing archive, deleting files from an archive and password support for adding and extracting files.\0D\0A\0D\0AVersion 2.3 adds support for transparent Mac Resource file handling through MacBinary encoding." Summary="OpenG Zip Tools" License=LGPL ! Copyright="1995-2005 Mark Adler, Jean-loup Gailly\0A1998-2005 Gilles Vollant\0A2002 - 2006 Christophe Salzmann, Jim Kring, Rolf Kalbermatter" Distribution="OpenG Toolkit" Icon=lvzip.bmp --- 1,12 ---- [Package Name] Name=oglib_lvzip ! Version=2.4 Release=1 [Description] ! Description="The lvzip package contains several routines for operating on zip files.\0D\0A\0D\0AVersion 2.2 adds support for appending files to an existing archive, deleting files from an archive and password support for adding and extracting files.\0D\0A\0D\0AVersion 2.3 adds support for transparent Mac Resource file handling through MacBinary encoding.\0D\0AVersion 2.4 adds support for direct extracting into memory and storing from memory." Summary="OpenG Zip Tools" License=LGPL ! Copyright="1995-2005 Mark Adler, Jean-loup Gailly\0A1998-2005 Gilles Vollant\0A2002 - 2007 Christophe Salzmann, Jim Kring, Rolf Kalbermatter" Distribution="OpenG Toolkit" Icon=lvzip.bmp *************** *** 40,44 **** File 0=macbin.mnu ! File 1=readme2_3.txt File 2=unzip.mnu File 3=zip.mnu --- 40,44 ---- File 0=macbin.mnu ! File 1=readme.txt File 2=unzip.mnu File 3=zip.mnu Index: lvzip.ogpb =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/lvzip.ogpb,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** lvzip.ogpb 3 Jan 2006 12:17:22 -0000 1.2 --- lvzip.ogpb 16 Sep 2007 15:11:58 -0000 1.3 *************** *** 1,12 **** [Package Name] Name=oglib_lvzip ! Version=2.3 Release=1 [Description] ! Description="The lvzip package contains several routines for operating on zip files.\0D\0AThe new version 2.2 adds support for appending files to an existing archive, deleting files from an archive and password support for adding and extracting files." Summary="OpenG Zip Tools" License=LGPL ! Copyright="1995-2004 Mark Adler, Jean-loup Gailly\0A1998-2004 Gilles Vollant\0A2002 - 2005 Christophe Salzmann, Jim Kring, Rolf Kalbermatter" Distribution="OpenG Toolkit" Icon=lvzip.bmp --- 1,12 ---- [Package Name] Name=oglib_lvzip ! Version=2.4 Release=1 [Description] ! Description="The lvzip package contains several routines for operating on zip files.\0D\0AThe new version 2.2 adds support for appending files to an existing archive, deleting files from an archive and password support for adding and extracting files.\0D\0A\0D\0AVersion 2.3 adds support for transparent Mac Resource file handling through MacBinary encoding.\0D\0AVersion 2.4 adds support for direct extracting into memory and storing from memory." Summary="OpenG Zip Tools" License=LGPL ! Copyright="1995-2004 Mark Adler, Jean-loup Gailly\0A1998-2004 Gilles Vollant\0A2002 - 2007 Christophe Salzmann, Jim Kring, Rolf Kalbermatter" Distribution="OpenG Toolkit" Icon=lvzip.bmp Index: lvzip.ogbld =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/lvzip.ogbld,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** lvzip.ogbld 23 Sep 2006 18:45:16 -0000 1.6 --- lvzip.ogbld 16 Sep 2007 15:11:58 -0000 1.7 *************** *** 43,47 **** Ambiguous VIs Dest Dir="" Call Pre-Build VI="build_support/Pre-Post Build (testing).vi" ! Call Post-Build VI="build_support/Pre-Post Build (testing).vi" Revision File=build_support/lvzip.rev Version VI Name="" --- 43,47 ---- Ambiguous VIs Dest Dir="" Call Pre-Build VI="build_support/Pre-Post Build (testing).vi" ! Call Post-Build VI="" Revision File=build_support/lvzip.rev Version VI Name="" Index: Change-Log.txt =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/Change-Log.txt,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Change-Log.txt 23 Sep 2006 06:09:14 -0000 1.6 --- Change-Log.txt 16 Sep 2007 15:11:58 -0000 1.7 *************** *** 42,44 **** 2006-09-23 rk ! Fixed error in LabVIEW 8 when extracting read-only files. \ No newline at end of file --- 42,50 ---- 2006-09-23 rk ! Fixed error in LabVIEW 8 when extracting read-only files. ! ! 2007-09-10 rk ! Added support for adding and extracting memory streams to and from a ZIP file. ! ! 2007-09-16 rk ! Added support for ZIP streams itself instead of disk based ZIP files. |
From: Rolf K. <lab...@us...> - 2007-09-16 15:08:04
|
Update of /cvsroot/opengtoolkit/lvzip/c_source In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv27936/c_source Modified Files: iomem.c Log Message: Allow adding to existing memory stream Index: iomem.c =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/iomem.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** iomem.c 16 Sep 2007 14:27:09 -0000 1.1 --- iomem.c 16 Sep 2007 15:08:05 -0000 1.2 *************** *** 63,67 **** MEMORY_IO memio; memio.mode = mode; ! memio.pos = 0; memio.error = 0; ret = malloc(sizeof(MEMORY_IO)); --- 63,70 ---- MEMORY_IO memio; memio.mode = mode; ! if (mode & ZLIB_FILEFUNC_MODE_CREATE) ! memio.pos = 0; ! else ! memio.pos = LStrLen(*(LStrHandle)opaque); memio.error = 0; ret = malloc(sizeof(MEMORY_IO)); |
From: Rolf K. <lab...@us...> - 2007-09-16 15:08:04
|
Update of /cvsroot/opengtoolkit/lvzip/source In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv27936/source Modified Files: lvzlib.dll Log Message: Allow adding to existing memory stream Index: lvzlib.dll =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzlib.dll,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 Binary files /tmp/cvsdrzrvz and /tmp/cvsTkSSzn differ |
Update of /cvsroot/opengtoolkit/lvzip/source/lvzip.llb In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv24756 Added Files: ZLIB Initialize Stream Functions.vi ZLIB Open Unzip Stream.vi ZLIB Open Unzip.vi ZLIB Open Zip Stream.vi ZLIB Open Zip.vi Log Message: Addition of memory stream for ZIP file --- NEW FILE: ZLIB Initialize Stream Functions.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ZLIB Open Zip Stream.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ZLIB Open Zip.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ZLIB Open Unzip.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ZLIB Open Unzip Stream.vi --- (This appears to be a binary file; contents omitted.) |
From: Rolf K. <lab...@us...> - 2007-09-16 14:58:20
|
Update of /cvsroot/opengtoolkit/lvzip/source/lvzip.llb In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23956/lvzip.llb Modified Files: ZLIB Close Zip Archive.vi ZLIB Compress Directory.vi ZLIB Compress Files.vi ZLIB Delete Files From Archive.vi ZLIB Extract All Files To Dir.vi ZLIB Initialize File Functions.vi ZLIB Open Unzip Archive.vi ZLIB Open Zip Archive.vi ZLIB Store Stream.vi ZLIB Store.vi ZLIB VI Tree.vi Log Message: Addition of memory stream for ZIP file Index: ZLIB Compress Directory.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Compress Directory.vi,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 Binary files /tmp/cvsF2Ltri and /tmp/cvsw6s3Ej differ Index: ZLIB Initialize File Functions.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Initialize File Functions.vi,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 Binary files /tmp/cvsexrjnv and /tmp/cvsBqXFbx differ Index: ZLIB Extract All Files To Dir.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Extract All Files To Dir.vi,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 Binary files /tmp/cvsiP16kD and /tmp/cvsCaL3iF differ Index: ZLIB Store Stream.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Store Stream.vi,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvs6epTHM and /tmp/cvstr4XVO differ Index: ZLIB Open Zip Archive.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Open Zip Archive.vi,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 Binary files /tmp/cvs0ly0JU and /tmp/cvszOP2aX differ Index: ZLIB Open Unzip Archive.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Open Unzip Archive.vi,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 Binary files /tmp/cvsRqutvV and /tmp/cvsuY3I1X differ Index: ZLIB Store.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Store.vi,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsHkyDb1 and /tmp/cvs64WkN3 differ Index: ZLIB Close Zip Archive.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Close Zip Archive.vi,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 Binary files /tmp/cvsCg9sw4 and /tmp/cvshtkMd7 differ Index: ZLIB Compress Files.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Compress Files.vi,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 Binary files /tmp/cvsKYN024 and /tmp/cvsDDMzT7 differ Index: ZLIB Delete Files From Archive.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Delete Files From Archive.vi,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 Binary files /tmp/cvs9Kk6jp and /tmp/cvsyEOWPs differ Index: ZLIB VI Tree.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB VI Tree.vi,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 Binary files /tmp/cvsaS1Hmu and /tmp/cvsrxzi6x differ |
From: Rolf K. <lab...@us...> - 2007-09-16 14:58:20
|
Update of /cvsroot/opengtoolkit/lvzip/source/macbin.llb In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23956/macbin.llb Modified Files: MACBIN Resource File Info Core.vi Log Message: Addition of memory stream for ZIP file Index: MACBIN Resource File Info Core.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/macbin.llb/MACBIN Resource File Info Core.vi,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 Binary files /tmp/cvspx7HIP and /tmp/cvssGNs2R differ |
From: Rolf K. <lab...@us...> - 2007-09-16 14:58:19
|
Update of /cvsroot/opengtoolkit/lvzip/source In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23956 Modified Files: lvzlib.dll Log Message: Addition of memory stream for ZIP file Index: lvzlib.dll =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzlib.dll,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 Binary files /tmp/cvsApZATz and /tmp/cvsX8ETPB differ |
From: Rolf K. <lab...@us...> - 2007-09-16 14:27:09
|
Update of /cvsroot/opengtoolkit/lvzip/c_source In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv12413 Added Files: iomem.c iomem.h Log Message: Addition of memory stream for ZIP file --- NEW FILE: iomem.c --- /* iomem.c -- Memory base function header for compress/uncompress .zip files using zlib + zip or unzip API Copyright (C) 2007 Rolf Kalbermatter */ #include "zutil.h" #include "ioapi.h" #include "iomem.h" #include "macbin.h" voidpf ZCALLBACK mem_open_file_func OF(( voidpf opaque, const char* filename, int mode)); uLong ZCALLBACK mem_read_file_func OF(( voidpf opaque, voidpf stream, void* buf, uLong size)); uLong ZCALLBACK mem_write_file_func OF(( voidpf opaque, voidpf stream, const void* buf, uLong size)); long ZCALLBACK mem_tell_file_func OF(( voidpf opaque, voidpf stream)); long ZCALLBACK mem_seek_file_func OF(( voidpf opaque, voidpf stream, uLong offset, int origin)); int ZCALLBACK mem_close_file_func OF(( voidpf opaque, voidpf stream)); int ZCALLBACK mem_error_file_func OF(( voidpf opaque, voidpf stream)); typedef struct { int mode; uLong pos; int error; } MEMORY_IO; voidpf ZCALLBACK mem_open_file_func (opaque, filename, mode) voidpf opaque; const char* filename; int mode; { voidpf ret = NULL; if (opaque != NULL) { MEMORY_IO memio; memio.mode = mode; memio.pos = 0; memio.error = 0; ret = malloc(sizeof(MEMORY_IO)); if (ret) *((MEMORY_IO*)ret) = memio; } return ret; } uLong ZCALLBACK mem_read_file_func (opaque, stream, buf, size) voidpf opaque; voidpf stream; void* buf; uLong size; { uLong ret = 0; if (stream != NULL) { MEMORY_IO* mem = (MEMORY_IO*)stream; uLong pos = mem->pos; ret = LStrLen(*(LStrHandle)opaque) - pos; if (size < ret) ret = size; zmemcpy(buf, LStrBuf(*(LStrHandle)opaque) + pos, ret); mem->pos += ret; } return ret; } uLong ZCALLBACK mem_write_file_func (opaque, stream, buf, size) voidpf opaque; voidpf stream; const void* buf; uLong size; { MEMORY_IO* mem = (MEMORY_IO*)stream; uLong pos = 0; if (stream != NULL && (mem->mode & ZLIB_FILEFUNC_MODE_WRITE)) { pos = mem->pos; if ((uLong)LStrLen(*(LStrHandle)opaque) < pos + size) { int err; if (err = NumericArrayResize(uB, 1, &(UHandle)opaque, pos + size)) { mem->error = err; return 0; } } zmemcpy(LStrBuf(*(LStrHandle)opaque) + pos, buf, size); mem->pos += size; pos = size; } return pos; } long ZCALLBACK mem_tell_file_func (opaque, stream) voidpf opaque; voidpf stream; { long ret = -1; if (stream != NULL) { ret = (long)((MEMORY_IO*)stream)->pos; } return ret; } long ZCALLBACK mem_seek_file_func (opaque, stream, offset, origin) voidpf opaque; voidpf stream; uLong offset; int origin; { if (stream != NULL) { MEMORY_IO* mem = (MEMORY_IO*)stream; uLong pos; switch (origin) { case ZLIB_FILEFUNC_SEEK_CUR : pos = mem->pos + offset; break; case ZLIB_FILEFUNC_SEEK_END : pos = LStrLen(*(LStrHandle)opaque) + offset; break; case ZLIB_FILEFUNC_SEEK_SET : pos = offset; break; default: return -1; } if (pos > LStrLen(*(LStrHandle)opaque)) { if (mem->mode & ZLIB_FILEFUNC_MODE_WRITE) { MgErr err; if (err = NumericArrayResize(uB, 1, &(UHandle)opaque, pos)) { mem->error = err; return -1; } } else return -1; } mem->pos = pos; return 0; } return -1; } int ZCALLBACK mem_close_file_func (opaque, stream) voidpf opaque; voidpf stream; { int ret=-1; if (stream != NULL) { free(stream); } return ret; } int ZCALLBACK mem_error_file_func (opaque, stream) voidpf opaque; voidpf stream; { int ret=-1; if (stream!=NULL) { ret = ((MEMORY_IO*)stream)->error; } return ret; } void fill_mem_filefunc (pzlib_filefunc_def, memory) zlib_filefunc_def* pzlib_filefunc_def; voidpf memory; { pzlib_filefunc_def->zopen_file = mem_open_file_func; pzlib_filefunc_def->zread_file = mem_read_file_func; pzlib_filefunc_def->zwrite_file = mem_write_file_func; pzlib_filefunc_def->ztell_file = mem_tell_file_func; pzlib_filefunc_def->zseek_file = mem_seek_file_func; pzlib_filefunc_def->zclose_file = mem_close_file_func; pzlib_filefunc_def->zerror_file = mem_error_file_func; pzlib_filefunc_def->opaque = memory; } --- NEW FILE: iomem.h --- /* iowin32.h -- IO base function header for compress/uncompress .zip files using zlib + zip or unzip API This IO API version uses the Win32 API (for Microsoft Windows) Version 1.01e, February 12th, 2005 Copyright (C) 1998-2005 Gilles Vollant */ #include <stdlib.h> #ifdef __cplusplus extern "C" { #endif void fill_mem_filefunc OF((zlib_filefunc_def* pzlib_filefunc_def, voidpf memory)); #ifdef __cplusplus } #endif |
From: Rolf K. <lab...@us...> - 2007-09-16 14:26:21
|
Update of /cvsroot/opengtoolkit/lvzip/c_source In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv12350 Modified Files: macbin.c macbin.h zlibvc.dsp Log Message: Addition of memory stream for ZIP file Index: macbin.c =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/macbin.c,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** macbin.c 15 Sep 2007 23:05:38 -0000 1.27 --- macbin.c 16 Sep 2007 14:26:17 -0000 1.28 *************** *** 10,13 **** --- 10,14 ---- #include "zlib.h" #include "ioapi.h" + #include "iomem.h" #include "macbin.h" *************** *** 42,46 **** err = FPathToText(path, (LStrPtr)&pathLen); if (err) ! DebugPrintf("FPathToText1: err = %ld", err); if (!err) { --- 43,47 ---- err = FPathToText(path, (LStrPtr)&pathLen); if (err) ! DEBUGPRINTF(("FPathToText1: err = %ld", err)); if (!err) { *************** *** 55,59 **** lstr->str[lstr->cnt] = 0; if (err) ! DebugPrintf("FPathToText2: err = %ld", err); if (!err) { --- 56,60 ---- lstr->str[lstr->cnt] = 0; if (err) ! DEBUGPRINTF(("FPathToText2: err = %ld", err)); if (!err) { *************** *** 62,67 **** err = OSErrToLVErr(ret); if (err) ! DebugPrintf("MakeFileSpec: ret = %d, err = %ld", ret, err); ! DebugPrintf("MakeFileSpec: len = %ld, len2 = %d, path = %s", lstr->cnt, (int16)name[0], lstr->str); } } --- 63,68 ---- err = OSErrToLVErr(ret); if (err) ! DEBUGPRINTF(("MakeFileSpec: ret = %d, err = %ld", ret, err)); ! DEBUGPRINTF(("MakeFileSpec: len = %ld, len2 = %d, path = %s", lstr->cnt, (int16)name[0], lstr->str)); } } *************** *** 78,82 **** if (err) { ! DebugPrintf("MakeFSSpec: err = %ld", err); if (fnfErr == err) { --- 79,83 ---- if (err) { ! DEBUGPRINTF(("MakeFSSpec: err = %ld", err)); if (fnfErr == err) { *************** *** 93,97 **** int32 i; ! DebugPrintf("MakeFileSpec: trying with subpaths"); /* remove the last elt of the path and see if we have success */ PStrCpy(temp, path); --- 94,98 ---- int32 i; ! DEBUGPRINTF(("MakeFileSpec: trying with subpaths")); /* remove the last elt of the path and see if we have success */ PStrCpy(temp, path); *************** *** 102,111 **** PStrLen(temp) = PStrLen(path) - i; err = MakeFileSpec(vol, dirID, temp, &fst); ! DebugPrintf("MakeFileSpec: err2 = %ld", err); if (!err || (fnfErr == err)) { PStrLen(p) = i; err = FSMakeFSSpec(vol, fst.parID, p, fss); ! DebugPrintf("MakeFSSpec: err3 = %ld", err); } } --- 103,112 ---- PStrLen(temp) = PStrLen(path) - i; err = MakeFileSpec(vol, dirID, temp, &fst); ! DEBUGPRINTF(("MakeFileSpec: err2 = %ld", err)); if (!err || (fnfErr == err)) { PStrLen(p) = i; err = FSMakeFSSpec(vol, fst.parID, p, fss); ! DEBUGPRINTF(("MakeFSSpec: err3 = %ld", err)); } } *************** *** 465,469 **** if (err = MakeMacSpec(path, &fss)) { ! DebugPrintf("MakeMacSpec: err = %ld", err); return err; } --- 466,470 ---- if (err = MakeMacSpec(path, &fss)) { ! DEBUGPRINTF(("MakeMacSpec: err = %ld", err)); return err; } *************** *** 662,666 **** err = FNewRefNum(path, ioRefNum, refnum); else ! DebugPrintf("OpenFile: err = %ld, rsrc = %d", err, rsrc); return err; --- 663,667 ---- err = FNewRefNum(path, ioRefNum, refnum); else ! DEBUGPRINTF(("OpenFile: err = %ld, rsrc = %d", err, rsrc)); return err; *************** *** 695,699 **** if (err = MakeMacSpec(path, &fss)) { ! DebugPrintf("MakeMacSpec: err = %ld", err); return err; } --- 696,700 ---- if (err = MakeMacSpec(path, &fss)) { ! DEBUGPRINTF(("MakeMacSpec: err = %ld", err)); return err; } *************** *** 706,710 **** err = OSErrToLVErr(PBGetCatInfoSync(&cpb)); if (err) ! DebugPrintf("PBGetCatInfo: err = %ld", err); if (!err) --- 707,711 ---- err = OSErrToLVErr(PBGetCatInfoSync(&cpb)); if (err) ! DEBUGPRINTF(("PBGetCatInfo: err = %ld", err)); if (!err) *************** *** 716,720 **** err = OSErrToLVErr(PBDTGetPath(&dtpb)); if (err) ! DebugPrintf("PBGetPath: err = %ld", err); if (!err) { --- 717,721 ---- err = OSErrToLVErr(PBDTGetPath(&dtpb)); if (err) ! DEBUGPRINTF(("PBGetPath: err = %ld", err)); if (!err) { *************** *** 751,755 **** err = OSErrToLVErr(PBSetCatInfoSync(&cpb)); if (err) ! DebugPrintf("PBSetCatInfo: err = %ld", err); if (!err && comment) { --- 752,756 ---- err = OSErrToLVErr(PBSetCatInfoSync(&cpb)); if (err) ! DEBUGPRINTF(("PBSetCatInfo: err = %ld", err)); if (!err && comment) { *************** *** 954,965 **** } ! extern long ZEXPORT InitializeFileFuncs (zlib_filefunc_def* pzlib_filefunc_def) { if (pzlib_filefunc_def) { #if Win32 ! fill_win32_filefunc(pzlib_filefunc_def); #else ! fill_fopen_filefunc(pzlib_filefunc_def); #endif return noErr; --- 955,969 ---- } ! extern long ZEXPORT InitializeFileFuncs (zlib_filefunc_def* pzlib_filefunc_def, LStrHandle memory) { if (pzlib_filefunc_def) { + if (memory) + fill_mem_filefunc(pzlib_filefunc_def, memory); + else #if Win32 ! fill_win32_filefunc(pzlib_filefunc_def); #else ! fill_fopen_filefunc(pzlib_filefunc_def); #endif return noErr; Index: macbin.h =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/macbin.h,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** macbin.h 15 Sep 2007 23:05:38 -0000 1.20 --- macbin.h 16 Sep 2007 14:26:17 -0000 1.21 *************** *** 17,21 **** #define MacOSX 1 #endif ! #define BigEndian 1 #elif defined(__GNUC__) || defined(linux) #define Unix 1 --- 17,25 ---- #define MacOSX 1 #endif ! #if defined(__i386__) ! #define BigEndian 0 ! #else ! #define BigEndian 1 ! #endif #elif defined(__GNUC__) || defined(linux) #define Unix 1 *************** *** 37,49 **** #define DoDebugger() #endif ! #define DebugPrintf DbgPrintf #else #define DoDebugger() ! ! long DebugPrintf(char* fmt, ...); long DebugPrintf(char* fmt, ...) { return 0; } #endif --- 41,54 ---- #define DoDebugger() #endif ! #define DEBUGPRINTF(args) DbgPrintf args #else #define DoDebugger() ! #define DEBUGPRINTF(args) ! /* long DebugPrintf(char* fmt, ...); long DebugPrintf(char* fmt, ...) { return 0; } + */ #endif *************** *** 263,267 **** uInt32 denyMode)); ! extern long ZEXPORT InitializeFileFuncs OF((zlib_filefunc_def* pzlib_filefunc_def)); #ifdef __cplusplus --- 268,272 ---- uInt32 denyMode)); ! extern long ZEXPORT InitializeFileFuncs OF((zlib_filefunc_def* pzlib_filefunc_def, LStrHandle memory)); #ifdef __cplusplus Index: zlibvc.dsp =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/zlibvc.dsp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** zlibvc.dsp 25 Oct 2006 08:58:37 -0000 1.9 --- zlibvc.dsp 16 Sep 2007 14:26:17 -0000 1.10 *************** *** 246,249 **** --- 246,253 ---- # Begin Source File + SOURCE=.\iomem.c + # End Source File + # Begin Source File + SOURCE=.\iowin32.c # End Source File *************** *** 323,326 **** --- 327,334 ---- # Begin Source File + SOURCE=.\iomem.h + # End Source File + # Begin Source File + SOURCE=.\iowin32.h # End Source File |
From: Rolf K. <lab...@us...> - 2007-09-15 23:05:42
|
Update of /cvsroot/opengtoolkit/lvzip/c_source In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17858 Modified Files: macbin.c macbin.h Log Message: Added some extra LabVIEW Manager declarations Index: macbin.c =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/macbin.c,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** macbin.c 15 Sep 2007 21:21:44 -0000 1.26 --- macbin.c 15 Sep 2007 23:05:38 -0000 1.27 *************** *** 855,859 **** else { ! fileInfo->type = kUnknownType; fileInfo->creator = kUnknownCreator; Win32ConvertToLVTime(fi.ftCreationTime, &fileInfo->cDate); --- 855,859 ---- else { ! fileInfo->type = kUnknownFileType; fileInfo->creator = kUnknownCreator; Win32ConvertToLVTime(fi.ftCreationTime, &fileInfo->cDate); Index: macbin.h =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/macbin.h,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** macbin.h 15 Sep 2007 21:21:44 -0000 1.19 --- macbin.h 15 Sep 2007 23:05:38 -0000 1.20 *************** *** 65,68 **** --- 65,70 ---- Private(LVRefNum); + typedef enum { iB=1, iW, iL, iQ, uB, uW, uL, uQ, fS, fD, fX, cS, cD, cX } NumType; + typedef int32 MgErr; typedef int16 McErr; *************** *** 235,238 **** --- 237,243 ---- MgErr DSDisposePtr(UPtr); MgErr DSSetHandleSize(UHandle, int32); + MgErr DSDisposeHandle(UHandle); + + MgErr NumericArrayResize(int32, int32, UHandle*, int32); #define Min(a, b) ((a) < (b)) ? (a) : (b) |
From: Jim K. <jk...@us...> - 2007-09-15 21:21:43
|
Update of /cvsroot/opengtoolkit/lvzip/c_source/lvzip.xcodeproj In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv10235/lvzip.xcodeproj Added Files: .cvsignore jameskring.pbxuser project.pbxproj Log Message: upgraded project to xcode 2.4.1 and made some modifications of macbin.c and macbin.h for compiling on Mac. --- NEW FILE: .cvsignore --- .DS_Store .pbxuser --- NEW FILE: project.pbxproj --- // !$*UTF8*$! { archiveVersion = 1; classes = { }; objectVersion = 42; objects = { /* Begin PBXBuildFile section */ 836583B4088D13980083EC20 /* System.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 836583A3088D034C0083EC20 /* System.framework */; }; 839542C00894F2490020C3E2 /* macbin.h in Headers */ = {isa = PBXBuildFile; fileRef = 839542890894F2480020C3E2 /* macbin.h */; }; 839542C10894F2490020C3E2 /* macbin.c in Sources */ = {isa = PBXBuildFile; fileRef = 8395428A0894F2480020C3E2 /* macbin.c */; }; 839542C30894F2490020C3E2 /* mztools.c in Sources */ = {isa = PBXBuildFile; fileRef = 8395428C0894F2480020C3E2 /* mztools.c */; }; 839542C60894F2490020C3E2 /* inffast.h in Headers */ = {isa = PBXBuildFile; fileRef = 8395428F0894F2480020C3E2 /* inffast.h */; }; 839542C70894F2490020C3E2 /* inffast.c in Sources */ = {isa = PBXBuildFile; fileRef = 839542900894F2480020C3E2 /* inffast.c */; }; 839542C80894F2490020C3E2 /* crc32.c in Sources */ = {isa = PBXBuildFile; fileRef = 839542910894F2480020C3E2 /* crc32.c */; }; 839542C90894F2490020C3E2 /* crc32.h in Headers */ = {isa = PBXBuildFile; fileRef = 839542920894F2480020C3E2 /* crc32.h */; }; 839542CA0894F2490020C3E2 /* deflate.c in Sources */ = {isa = PBXBuildFile; fileRef = 839542930894F2480020C3E2 /* deflate.c */; }; 839542CB0894F2490020C3E2 /* crypt.h in Headers */ = {isa = PBXBuildFile; fileRef = 839542940894F2480020C3E2 /* crypt.h */; }; 839542CC0894F2490020C3E2 /* inftrees.c in Sources */ = {isa = PBXBuildFile; fileRef = 839542950894F2480020C3E2 /* inftrees.c */; }; 839542CD0894F2490020C3E2 /* inflate.h in Headers */ = {isa = PBXBuildFile; fileRef = 839542960894F2480020C3E2 /* inflate.h */; }; 839542CE0894F2490020C3E2 /* deflate.h in Headers */ = {isa = PBXBuildFile; fileRef = 839542970894F2480020C3E2 /* deflate.h */; }; 839542CF0894F2490020C3E2 /* zutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 839542980894F2480020C3E2 /* zutil.h */; }; 839542D00894F2490020C3E2 /* zutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 839542990894F2480020C3E2 /* zutil.c */; }; 839542D60894F2490020C3E2 /* compress.c in Sources */ = {isa = PBXBuildFile; fileRef = 8395429F0894F2480020C3E2 /* compress.c */; }; 839542D90894F2490020C3E2 /* ioapi.h in Headers */ = {isa = PBXBuildFile; fileRef = 839542A20894F2480020C3E2 /* ioapi.h */; }; 839542DA0894F2490020C3E2 /* ioapi.c in Sources */ = {isa = PBXBuildFile; fileRef = 839542A30894F2480020C3E2 /* ioapi.c */; }; 839542DB0894F2490020C3E2 /* inftrees.h in Headers */ = {isa = PBXBuildFile; fileRef = 839542A40894F2480020C3E2 /* inftrees.h */; }; 839542DD0894F2490020C3E2 /* zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 839542A60894F2490020C3E2 /* zlib.h */; }; 839542DF0894F2490020C3E2 /* zip.h in Headers */ = {isa = PBXBuildFile; fileRef = 839542A80894F2490020C3E2 /* zip.h */; }; 839542E00894F2490020C3E2 /* zip.c in Sources */ = {isa = PBXBuildFile; fileRef = 839542A90894F2490020C3E2 /* zip.c */; }; 839542E10894F2490020C3E2 /* zconf.in.h in Headers */ = {isa = PBXBuildFile; fileRef = 839542AA0894F2490020C3E2 /* zconf.in.h */; }; 839542E20894F2490020C3E2 /* zconf.h in Headers */ = {isa = PBXBuildFile; fileRef = 839542AB0894F2490020C3E2 /* zconf.h */; }; 839542E30894F2490020C3E2 /* unzip.h in Headers */ = {isa = PBXBuildFile; fileRef = 839542AC0894F2490020C3E2 /* unzip.h */; }; 839542E40894F2490020C3E2 /* unzip.c in Sources */ = {isa = PBXBuildFile; fileRef = 839542AD0894F2490020C3E2 /* unzip.c */; }; 839542E50894F2490020C3E2 /* uncompr.c in Sources */ = {isa = PBXBuildFile; fileRef = 839542AE0894F2490020C3E2 /* uncompr.c */; }; 839542E60894F2490020C3E2 /* trees.h in Headers */ = {isa = PBXBuildFile; fileRef = 839542AF0894F2490020C3E2 /* trees.h */; }; 839542E70894F2490020C3E2 /* trees.c in Sources */ = {isa = PBXBuildFile; fileRef = 839542B00894F2490020C3E2 /* trees.c */; }; 839542E80894F2490020C3E2 /* mztools.h in Headers */ = {isa = PBXBuildFile; fileRef = 839542B10894F2490020C3E2 /* mztools.h */; }; 839542EB0894F2490020C3E2 /* inflate.c in Sources */ = {isa = PBXBuildFile; fileRef = 839542B40894F2490020C3E2 /* inflate.c */; }; 839542EC0894F2490020C3E2 /* inffixed.h in Headers */ = {isa = PBXBuildFile; fileRef = 839542B50894F2490020C3E2 /* inffixed.h */; }; 839542ED0894F2490020C3E2 /* infback.c in Sources */ = {isa = PBXBuildFile; fileRef = 839542B60894F2490020C3E2 /* infback.c */; }; 839542EE0894F2490020C3E2 /* gzio.c in Sources */ = {isa = PBXBuildFile; fileRef = 839542B70894F2490020C3E2 /* gzio.c */; }; 839542EF0894F2490020C3E2 /* gvmat32c.c in Sources */ = {isa = PBXBuildFile; fileRef = 839542B80894F2490020C3E2 /* gvmat32c.c */; }; 839542F10894F2490020C3E2 /* adler32.c in Sources */ = {isa = PBXBuildFile; fileRef = 839542BA0894F2490020C3E2 /* adler32.c */; }; 83D3E21E080D117200DE332C /* MacBinaryIII.c in Sources */ = {isa = PBXBuildFile; fileRef = 83D3E1B3080D116E00DE332C /* MacBinaryIII.c */; }; 83D3E21F080D117200DE332C /* MacBinaryIII.h in Headers */ = {isa = PBXBuildFile; fileRef = 83D3E1B4080D116E00DE332C /* MacBinaryIII.h */; }; 83D3E26D080D117700DE332C /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 83D3E26C080D117700DE332C /* Carbon.framework */; }; C77CC6BF0C9C7D3200886AB2 /* liblvexports.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C77CC6BE0C9C7D3200886AB2 /* liblvexports.a */; }; C77CC6C20C9C7D6500886AB2 /* liblabviewcin.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C77CC6C10C9C7D6500886AB2 /* liblabviewcin.a */; }; /* End PBXBuildFile section */ /* Begin PBXFileReference section */ 836583A3088D034C0083EC20 /* System.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = System.framework; path = /System/Library/Frameworks/System.framework; sourceTree = "<absolute>"; }; 839542890894F2480020C3E2 /* macbin.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = macbin.h; sourceTree = "<group>"; }; 8395428A0894F2480020C3E2 /* macbin.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = macbin.c; sourceTree = "<group>"; }; 8395428C0894F2480020C3E2 /* mztools.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = mztools.c; sourceTree = "<group>"; }; 8395428F0894F2480020C3E2 /* inffast.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = inffast.h; sourceTree = "<group>"; }; 839542900894F2480020C3E2 /* inffast.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = inffast.c; sourceTree = "<group>"; }; 839542910894F2480020C3E2 /* crc32.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = crc32.c; sourceTree = "<group>"; }; 839542920894F2480020C3E2 /* crc32.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = crc32.h; sourceTree = "<group>"; }; 839542930894F2480020C3E2 /* deflate.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = deflate.c; sourceTree = "<group>"; }; 839542940894F2480020C3E2 /* crypt.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = crypt.h; sourceTree = "<group>"; }; 839542950894F2480020C3E2 /* inftrees.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = inftrees.c; sourceTree = "<group>"; }; 839542960894F2480020C3E2 /* inflate.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = inflate.h; sourceTree = "<group>"; }; 839542970894F2480020C3E2 /* deflate.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = deflate.h; sourceTree = "<group>"; }; 839542980894F2480020C3E2 /* zutil.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = zutil.h; sourceTree = "<group>"; }; 839542990894F2480020C3E2 /* zutil.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = zutil.c; sourceTree = "<group>"; }; 8395429F0894F2480020C3E2 /* compress.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = compress.c; sourceTree = "<group>"; }; 839542A20894F2480020C3E2 /* ioapi.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ioapi.h; sourceTree = "<group>"; }; 839542A30894F2480020C3E2 /* ioapi.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = ioapi.c; sourceTree = "<group>"; }; 839542A40894F2480020C3E2 /* inftrees.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = inftrees.h; sourceTree = "<group>"; }; 839542A60894F2490020C3E2 /* zlib.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = zlib.h; sourceTree = "<group>"; }; 839542A80894F2490020C3E2 /* zip.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = zip.h; sourceTree = "<group>"; }; 839542A90894F2490020C3E2 /* zip.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = zip.c; sourceTree = "<group>"; }; 839542AA0894F2490020C3E2 /* zconf.in.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = zconf.in.h; sourceTree = "<group>"; }; 839542AB0894F2490020C3E2 /* zconf.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = zconf.h; sourceTree = "<group>"; }; 839542AC0894F2490020C3E2 /* unzip.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = unzip.h; sourceTree = "<group>"; }; 839542AD0894F2490020C3E2 /* unzip.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = unzip.c; sourceTree = "<group>"; }; 839542AE0894F2490020C3E2 /* uncompr.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = uncompr.c; sourceTree = "<group>"; }; 839542AF0894F2490020C3E2 /* trees.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = trees.h; sourceTree = "<group>"; }; 839542B00894F2490020C3E2 /* trees.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = trees.c; sourceTree = "<group>"; }; 839542B10894F2490020C3E2 /* mztools.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = mztools.h; sourceTree = "<group>"; }; 839542B40894F2490020C3E2 /* inflate.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = inflate.c; sourceTree = "<group>"; }; 839542B50894F2490020C3E2 /* inffixed.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = inffixed.h; sourceTree = "<group>"; }; 839542B60894F2490020C3E2 /* infback.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = infback.c; sourceTree = "<group>"; }; 839542B70894F2490020C3E2 /* gzio.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = gzio.c; sourceTree = "<group>"; }; 839542B80894F2490020C3E2 /* gvmat32c.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = gvmat32c.c; sourceTree = "<group>"; }; 839542BA0894F2490020C3E2 /* adler32.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = adler32.c; sourceTree = "<group>"; }; 83D3E1AF080D116E00DE332C /* lvzlib.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = lvzlib.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 83D3E1B3080D116E00DE332C /* MacBinaryIII.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = MacBinaryIII.c; sourceTree = SOURCE_ROOT; }; 83D3E1B4080D116E00DE332C /* MacBinaryIII.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = MacBinaryIII.h; sourceTree = SOURCE_ROOT; }; 83D3E26C080D117700DE332C /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = /System/Library/Frameworks/Carbon.framework; sourceTree = "<absolute>"; }; C77CC6BE0C9C7D3200886AB2 /* liblvexports.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblvexports.a; path = "/Applications/National Instruments/LabVIEW 8.2/cintools/Mach-O/liblvexports.a"; sourceTree = "<absolute>"; }; C77CC6C10C9C7D6500886AB2 /* liblabviewcin.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liblabviewcin.a; path = "/Applications/National Instruments/LabVIEW 8.2/cintools/Mach-O/liblabviewcin.a"; sourceTree = "<absolute>"; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ 83D3E1AC080D116E00DE332C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( 83D3E26D080D117700DE332C /* Carbon.framework in Frameworks */, 836583B4088D13980083EC20 /* System.framework in Frameworks */, C77CC6BF0C9C7D3200886AB2 /* liblvexports.a in Frameworks */, C77CC6C20C9C7D6500886AB2 /* liblabviewcin.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ 83D3E18C080D116E00DE332C = { isa = PBXGroup; children = ( C77CC6C10C9C7D6500886AB2 /* liblabviewcin.a */, C77CC6BE0C9C7D3200886AB2 /* liblvexports.a */, 83D3E1B0080D116E00DE332C /* mac Specific */, 83D3E1B5080D116E00DE332C /* zlib Sources */, 83D3E26B080D117700DE332C /* Frameworks */, 83D3E19A080D116E00DE332C /* Products */, ); sourceTree = "<group>"; }; 83D3E19A080D116E00DE332C /* Products */ = { isa = PBXGroup; children = ( 83D3E1AF080D116E00DE332C /* lvzlib.framework */, ); name = Products; sourceTree = "<group>"; }; 83D3E1B0080D116E00DE332C /* mac Specific */ = { isa = PBXGroup; children = ( 83D3E1B4080D116E00DE332C /* MacBinaryIII.h */, 83D3E1B3080D116E00DE332C /* MacBinaryIII.c */, ); name = "mac Specific"; sourceTree = "<group>"; }; 83D3E1B5080D116E00DE332C /* zlib Sources */ = { isa = PBXGroup; children = ( 839542890894F2480020C3E2 /* macbin.h */, 8395428A0894F2480020C3E2 /* macbin.c */, 8395428C0894F2480020C3E2 /* mztools.c */, 8395428F0894F2480020C3E2 /* inffast.h */, 839542900894F2480020C3E2 /* inffast.c */, 839542910894F2480020C3E2 /* crc32.c */, 839542920894F2480020C3E2 /* crc32.h */, 839542930894F2480020C3E2 /* deflate.c */, 839542940894F2480020C3E2 /* crypt.h */, 839542950894F2480020C3E2 /* inftrees.c */, 839542960894F2480020C3E2 /* inflate.h */, 839542970894F2480020C3E2 /* deflate.h */, 839542980894F2480020C3E2 /* zutil.h */, 839542990894F2480020C3E2 /* zutil.c */, 8395429F0894F2480020C3E2 /* compress.c */, 839542A20894F2480020C3E2 /* ioapi.h */, 839542A30894F2480020C3E2 /* ioapi.c */, 839542A40894F2480020C3E2 /* inftrees.h */, 839542A60894F2490020C3E2 /* zlib.h */, 839542A80894F2490020C3E2 /* zip.h */, 839542A90894F2490020C3E2 /* zip.c */, 839542AA0894F2490020C3E2 /* zconf.in.h */, 839542AB0894F2490020C3E2 /* zconf.h */, 839542AC0894F2490020C3E2 /* unzip.h */, 839542AD0894F2490020C3E2 /* unzip.c */, 839542AE0894F2490020C3E2 /* uncompr.c */, 839542AF0894F2490020C3E2 /* trees.h */, 839542B00894F2490020C3E2 /* trees.c */, 839542B10894F2490020C3E2 /* mztools.h */, 839542B40894F2490020C3E2 /* inflate.c */, 839542B50894F2490020C3E2 /* inffixed.h */, 839542B60894F2490020C3E2 /* infback.c */, 839542B70894F2490020C3E2 /* gzio.c */, 839542B80894F2490020C3E2 /* gvmat32c.c */, 839542BA0894F2490020C3E2 /* adler32.c */, ); name = "zlib Sources"; sourceTree = "<group>"; }; 83D3E26B080D117700DE332C /* Frameworks */ = { isa = PBXGroup; children = ( 836583A3088D034C0083EC20 /* System.framework */, 83D3E26C080D117700DE332C /* Carbon.framework */, ); name = Frameworks; sourceTree = "<group>"; }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ 83D3E1A9080D116E00DE332C /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( 83D3E21F080D117200DE332C /* MacBinaryIII.h in Headers */, 839542C00894F2490020C3E2 /* macbin.h in Headers */, 839542C60894F2490020C3E2 /* inffast.h in Headers */, 839542C90894F2490020C3E2 /* crc32.h in Headers */, 839542CB0894F2490020C3E2 /* crypt.h in Headers */, 839542CD0894F2490020C3E2 /* inflate.h in Headers */, 839542CE0894F2490020C3E2 /* deflate.h in Headers */, 839542CF0894F2490020C3E2 /* zutil.h in Headers */, 839542D90894F2490020C3E2 /* ioapi.h in Headers */, 839542DB0894F2490020C3E2 /* inftrees.h in Headers */, 839542DD0894F2490020C3E2 /* zlib.h in Headers */, 839542DF0894F2490020C3E2 /* zip.h in Headers */, 839542E10894F2490020C3E2 /* zconf.in.h in Headers */, 839542E20894F2490020C3E2 /* zconf.h in Headers */, 839542E30894F2490020C3E2 /* unzip.h in Headers */, 839542E60894F2490020C3E2 /* trees.h in Headers */, 839542E80894F2490020C3E2 /* mztools.h in Headers */, 839542EC0894F2490020C3E2 /* inffixed.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ 83D3E1AE080D116E00DE332C /* OSX DLL */ = { isa = PBXNativeTarget; buildConfigurationList = C77CC6B40C9C7C6500886AB2 /* Build configuration list for PBXNativeTarget "OSX DLL" */; buildPhases = ( 83D3E1A9080D116E00DE332C /* Headers */, 83D3E1AA080D116E00DE332C /* Sources */, 83D3E1AC080D116E00DE332C /* Frameworks */, 83D3E1AD080D116E00DE332C /* Rez */, ); buildRules = ( ); dependencies = ( ); name = "OSX DLL"; productName = "OSX DLL"; productReference = 83D3E1AF080D116E00DE332C /* lvzlib.framework */; productType = "com.apple.product-type.framework"; }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ 83D3E190080D116E00DE332C /* Project object */ = { isa = PBXProject; buildConfigurationList = C77CC6B80C9C7C6500886AB2 /* Build configuration list for PBXProject "lvzip" */; hasScannedForEncodings = 1; mainGroup = 83D3E18C080D116E00DE332C; productRefGroup = 83D3E19A080D116E00DE332C /* Products */; projectDirPath = ""; targets = ( 83D3E1AE080D116E00DE332C /* OSX DLL */, ); }; /* End PBXProject section */ /* Begin PBXRezBuildPhase section */ 83D3E1AD080D116E00DE332C /* Rez */ = { isa = PBXRezBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXRezBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ 83D3E1AA080D116E00DE332C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( 83D3E21E080D117200DE332C /* MacBinaryIII.c in Sources */, 839542C10894F2490020C3E2 /* macbin.c in Sources */, 839542C30894F2490020C3E2 /* mztools.c in Sources */, 839542C70894F2490020C3E2 /* inffast.c in Sources */, 839542C80894F2490020C3E2 /* crc32.c in Sources */, 839542CA0894F2490020C3E2 /* deflate.c in Sources */, 839542CC0894F2490020C3E2 /* inftrees.c in Sources */, 839542D00894F2490020C3E2 /* zutil.c in Sources */, 839542D60894F2490020C3E2 /* compress.c in Sources */, 839542DA0894F2490020C3E2 /* ioapi.c in Sources */, 839542E00894F2490020C3E2 /* zip.c in Sources */, 839542E40894F2490020C3E2 /* unzip.c in Sources */, 839542E50894F2490020C3E2 /* uncompr.c in Sources */, 839542E70894F2490020C3E2 /* trees.c in Sources */, 839542EB0894F2490020C3E2 /* inflate.c in Sources */, 839542ED0894F2490020C3E2 /* infback.c in Sources */, 839542EE0894F2490020C3E2 /* gzio.c in Sources */, 839542EF0894F2490020C3E2 /* gvmat32c.c in Sources */, 839542F10894F2490020C3E2 /* adler32.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin XCBuildConfiguration section */ C77CC6B50C9C7C6500886AB2 /* Development */ = { isa = XCBuildConfiguration; buildSettings = { COPY_PHASE_STRIP = NO; GCC_ALTIVEC_EXTENSIONS = NO; GCC_CHAR_IS_UNSIGNED_CHAR = NO; GCC_DYNAMIC_NO_PIC = NO; GCC_ENABLE_CPP_EXCEPTIONS = NO; GCC_ENABLE_CPP_RTTI = NO; GCC_ENABLE_FIX_AND_CONTINUE = YES; GCC_GENERATE_DEBUGGING_SYMBOLS = YES; GCC_OPTIMIZATION_LEVEL = 0; GCC_PREPROCESSOR_DEFINITIONS = DEBUG; GCC_REUSE_STRINGS = NO; GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS = NO; GCC_WARN_UNINITIALIZED_AUTOS = NO; GCC_WARN_UNKNOWN_PRAGMAS = NO; GCC_WARN_UNUSED_PARAMETER = YES; GCC_WARN_UNUSED_VARIABLE = YES; HEADER_SEARCH_PATHS = ""; LIBRARY_SEARCH_PATHS = ( "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", "$(LIBRARY_SEARCH_PATHS_QUOTED_2)", ); LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SYSTEM_APPS_DIR)/National Instruments/LabVIEW 7.0/cintools/Mach-O\""; LIBRARY_SEARCH_PATHS_QUOTED_2 = "\"$(SYSTEM_APPS_DIR)/National Instruments/LabVIEW 8.2/cintools/Mach-O\""; LIBRARY_STYLE = DYNAMIC; MACH_O_TYPE = mh_dylib; OTHER_CFLAGS = "-fno-inline"; OTHER_LDFLAGS = ( "-multiply_defined", warning, ); OTHER_REZFLAGS = ""; PRODUCT_NAME = lvzlib; REZ_SCRIPT_TYPE = Roman; REZ_SUPPRESS_REDECLARED_RESOURCE_TYPE_WARNINGS = NO; SECTORDER_FLAGS = ""; WARNING_CFLAGS = ( "-Wmost", "-Wno-four-char-constants", "-Wno-unknown-pragmas", ); ZERO_LINK = YES; }; name = Development; }; C77CC6B60C9C7C6500886AB2 /* Deployment */ = { isa = XCBuildConfiguration; buildSettings = { COPY_PHASE_STRIP = YES; GCC_ALTIVEC_EXTENSIONS = NO; GCC_CHAR_IS_UNSIGNED_CHAR = NO; GCC_ENABLE_CPP_EXCEPTIONS = NO; GCC_ENABLE_CPP_RTTI = NO; GCC_ENABLE_FIX_AND_CONTINUE = NO; GCC_OPTIMIZATION_LEVEL = 0; GCC_REUSE_STRINGS = NO; GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS = NO; GCC_WARN_UNINITIALIZED_AUTOS = NO; GCC_WARN_UNKNOWN_PRAGMAS = NO; GCC_WARN_UNUSED_PARAMETER = YES; GCC_WARN_UNUSED_VARIABLE = YES; HEADER_SEARCH_PATHS = ""; LIBRARY_SEARCH_PATHS = ( "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", "$(LIBRARY_SEARCH_PATHS_QUOTED_2)", ); LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SYSTEM_APPS_DIR)/National Instruments/LabVIEW 7.0/cintools/Mach-O\""; LIBRARY_SEARCH_PATHS_QUOTED_2 = "\"$(SYSTEM_APPS_DIR)/National Instruments/LabVIEW 8.2/cintools/Mach-O\""; LIBRARY_STYLE = DYNAMIC; MACH_O_TYPE = mh_dylib; OTHER_CFLAGS = "-fno-inline"; OTHER_LDFLAGS = ( "-multiply_defined", warning, ); OTHER_REZFLAGS = ""; PRODUCT_NAME = lvzlib; REZ_SCRIPT_TYPE = Roman; REZ_SUPPRESS_REDECLARED_RESOURCE_TYPE_WARNINGS = NO; SECTORDER_FLAGS = ""; WARNING_CFLAGS = ( "-Wmost", "-Wno-four-char-constants", "-Wno-unknown-pragmas", ); ZERO_LINK = NO; }; name = Deployment; }; C77CC6B70C9C7C6500886AB2 /* Default */ = { isa = XCBuildConfiguration; buildSettings = { GCC_ALTIVEC_EXTENSIONS = NO; GCC_CHAR_IS_UNSIGNED_CHAR = NO; GCC_ENABLE_CPP_EXCEPTIONS = NO; GCC_ENABLE_CPP_RTTI = NO; GCC_OPTIMIZATION_LEVEL = 0; GCC_REUSE_STRINGS = NO; GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS = NO; GCC_WARN_UNINITIALIZED_AUTOS = NO; GCC_WARN_UNKNOWN_PRAGMAS = NO; GCC_WARN_UNUSED_PARAMETER = YES; GCC_WARN_UNUSED_VARIABLE = YES; HEADER_SEARCH_PATHS = ""; LIBRARY_SEARCH_PATHS = ( "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", "$(LIBRARY_SEARCH_PATHS_QUOTED_2)", ); LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SYSTEM_APPS_DIR)/National Instruments/LabVIEW 7.0/cintools/Mach-O\""; LIBRARY_SEARCH_PATHS_QUOTED_2 = "\"$(SYSTEM_APPS_DIR)/National Instruments/LabVIEW 8.2/cintools/Mach-O\""; LIBRARY_STYLE = DYNAMIC; MACH_O_TYPE = mh_dylib; OTHER_CFLAGS = "-fno-inline"; OTHER_LDFLAGS = ( "-multiply_defined", warning, ); OTHER_REZFLAGS = ""; PRODUCT_NAME = lvzlib; REZ_SCRIPT_TYPE = Roman; REZ_SUPPRESS_REDECLARED_RESOURCE_TYPE_WARNINGS = NO; SECTORDER_FLAGS = ""; WARNING_CFLAGS = ( "-Wmost", "-Wno-four-char-constants", "-Wno-unknown-pragmas", ); }; name = Default; }; C77CC6B90C9C7C6500886AB2 /* Development */ = { isa = XCBuildConfiguration; buildSettings = { }; name = Development; }; C77CC6BA0C9C7C6500886AB2 /* Deployment */ = { isa = XCBuildConfiguration; buildSettings = { }; name = Deployment; }; C77CC6BB0C9C7C6500886AB2 /* Default */ = { isa = XCBuildConfiguration; buildSettings = { }; name = Default; }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ C77CC6B40C9C7C6500886AB2 /* Build configuration list for PBXNativeTarget "OSX DLL" */ = { isa = XCConfigurationList; buildConfigurations = ( C77CC6B50C9C7C6500886AB2 /* Development */, C77CC6B60C9C7C6500886AB2 /* Deployment */, C77CC6B70C9C7C6500886AB2 /* Default */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Default; }; C77CC6B80C9C7C6500886AB2 /* Build configuration list for PBXProject "lvzip" */ = { isa = XCConfigurationList; buildConfigurations = ( C77CC6B90C9C7C6500886AB2 /* Development */, C77CC6BA0C9C7C6500886AB2 /* Deployment */, C77CC6BB0C9C7C6500886AB2 /* Default */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Default; }; /* End XCConfigurationList section */ }; rootObject = 83D3E190080D116E00DE332C /* Project object */; } --- NEW FILE: jameskring.pbxuser --- // !$*UTF8*$! { 8395428A0894F2480020C3E2 /* macbin.c */ = { uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {686, 14672}}"; sepNavSelRange = "{0, 0}"; sepNavVisRect = "{{0, 0}, {678, 281}}"; sepNavWindowFrame = "{{58, 183}, {750, 558}}"; }; }; 83D3E190080D116E00DE332C /* Project object */ = { activeBuildConfigurationName = Development; activeTarget = 83D3E1AE080D116E00DE332C /* OSX DLL */; addToTargets = ( 83D3E1AE080D116E00DE332C /* OSX DLL */, ); codeSenseManager = C77CC6BD0C9C7C6500886AB2 /* Code sense */; perUserDictionary = { PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = { PBXFileTableDataSourceColumnSortingDirectionKey = "-1"; PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; PBXFileTableDataSourceColumnWidthsKey = ( 20, 341, 20, 48.1626, 43, 43, 20, ); PBXFileTableDataSourceColumnsKey = ( PBXFileDataSource_FiletypeID, PBXFileDataSource_Filename_ColumnID, PBXFileDataSource_Built_ColumnID, PBXFileDataSource_ObjectSize_ColumnID, PBXFileDataSource_Errors_ColumnID, PBXFileDataSource_Warnings_ColumnID, PBXFileDataSource_Target_ColumnID, ); }; PBXPerProjectTemplateStateSaveDate = 211582023; PBXWorkspaceStateSaveDate = 211582023; }; sourceControlManager = C77CC6BC0C9C7C6500886AB2 /* Source Control */; userBuildSettings = { }; }; 83D3E1AE080D116E00DE332C /* OSX DLL */ = { activeExec = 0; }; 83D3E1B3080D116E00DE332C /* MacBinaryIII.c */ = { uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {770, 12726}}"; sepNavSelRange = "{2706, 48}"; sepNavVisRect = "{{0, 651}, {678, 281}}"; sepNavWindowFrame = "{{15, 215}, {750, 558}}"; }; }; C77CC6BC0C9C7C6500886AB2 /* Source Control */ = { isa = PBXSourceControlManager; fallbackIsa = XCSourceControlManager; isSCMEnabled = 0; scmConfiguration = { }; scmType = ""; }; C77CC6BD0C9C7C6500886AB2 /* Code sense */ = { isa = PBXCodeSenseManager; indexTemplatePath = ""; }; } |
From: Jim K. <jk...@us...> - 2007-09-15 21:21:43
|
Update of /cvsroot/opengtoolkit/lvzip/c_source In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv10235 Modified Files: macbin.c macbin.h Log Message: upgraded project to xcode 2.4.1 and made some modifications of macbin.c and macbin.h for compiling on Mac. Index: macbin.c =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/macbin.c,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** macbin.c 25 Oct 2006 08:58:37 -0000 1.25 --- macbin.c 15 Sep 2007 21:21:44 -0000 1.26 *************** *** 13,17 **** #if Mac ! #include <CoreServices/CoreServices.h> // instead of #include <Resources.h> #include "MacBinaryIII.h" --- 13,17 ---- #if Mac ! #include <CoreServices/CoreServices.h> /* instead of #include <Resources.h> */ #include "MacBinaryIII.h" *************** *** 447,451 **** OSErr ret; HParamBlockRec pb; ! Boolean hasDeny = HasFMExtension(fss, 1L << bHasOpenDeny); #elif Win32 LStrPtr lstr; --- 447,451 ---- OSErr ret; HParamBlockRec pb; ! Boolean hasDeny = HasFMExtension(&fss, 1L << bHasOpenDeny); #elif Win32 LStrPtr lstr; *************** *** 504,510 **** pb.fileParam.ioCompletion = 0; ! pb.fileParam.ioNamePtr = fss->name; ! pb.fileParam.ioVRefNum = fss->vRefNum; ! pb.fileParam.ioDirID = fss->parID; pb.ioParam.ioMisc = NULL; --- 504,510 ---- pb.fileParam.ioCompletion = 0; ! pb.fileParam.ioNamePtr = fss.name; ! pb.fileParam.ioVRefNum = fss.vRefNum; ! pb.fileParam.ioDirID = fss.parID; pb.ioParam.ioMisc = NULL; *************** *** 700,706 **** memset(&cpb, 0, sizeof(CInfoPBRec)); ! cpb.hFileInfo.ioNamePtr = fss->name; ! cpb.hFileInfo.ioVRefNum = fss->vRefNum; ! cpb.hFileInfo.ioDirID = fss->parID; err = OSErrToLVErr(PBGetCatInfoSync(&cpb)); --- 700,706 ---- memset(&cpb, 0, sizeof(CInfoPBRec)); ! cpb.hFileInfo.ioNamePtr = fss.name; ! cpb.hFileInfo.ioVRefNum = fss.vRefNum; ! cpb.hFileInfo.ioDirID = fss.parID; err = OSErrToLVErr(PBGetCatInfoSync(&cpb)); *************** *** 712,716 **** dtpb.ioCompletion = nil; dtpb.ioNamePtr = NULL; ! dtpb.ioVRefNum = fss->vRefNum; err = OSErrToLVErr(PBDTGetPath(&dtpb)); --- 712,716 ---- dtpb.ioCompletion = nil; dtpb.ioNamePtr = NULL; ! dtpb.ioVRefNum = fss.vRefNum; err = OSErrToLVErr(PBDTGetPath(&dtpb)); *************** *** 719,724 **** if (!err) { ! dtpb.ioNamePtr = fss->name; ! dtpb.ioDirID = fss->parID; *isDirectory = (MacIsDir(cpb) != 0); --- 719,724 ---- if (!err) { ! dtpb.ioNamePtr = fss.name; ! dtpb.ioDirID = fss.parID; *isDirectory = (MacIsDir(cpb) != 0); Index: macbin.h =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/macbin.h,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** macbin.h 25 Oct 2006 08:58:37 -0000 1.18 --- macbin.h 15 Sep 2007 21:21:44 -0000 1.19 *************** *** 213,218 **** } LVFileInfo; ! #define kUnknownType RTToL('?','?','?','?') ! #define kUnknownCreator RTToL('?','?','?','?') enum { openReadWrite, openReadOnly, openWriteOnly, openWriteOnlyTruncate }; /* open modes */ --- 213,218 ---- } LVFileInfo; ! #define kUnknownFileType RTToL('?','?','?','?') ! #define kUnknownCreator RTToL('?','?','?','?') enum { openReadWrite, openReadOnly, openWriteOnly, openWriteOnlyTruncate }; /* open modes */ |
From: Jim K. <jk...@us...> - 2007-09-15 21:18:18
|
Update of /cvsroot/opengtoolkit/lvzip/c_source/lvzip.xcodeproj In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv9044/lvzip.xcodeproj Log Message: Directory /cvsroot/opengtoolkit/lvzip/c_source/lvzip.xcodeproj added to the repository |
Update of /cvsroot/opengtoolkit/lvzip/source/lvzip.llb In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv5943 Modified Files: ZLIB Close Read File.vi ZLIB Close Unzip Archive.vi ZLIB Close Write File.vi ZLIB Close Zip Archive.vi ZLIB Copy Raw File.vi ZLIB Delete Files From Archive.vi ZLIB Enumerate File Contents.vi ZLIB Get Current File Info.vi ZLIB Get Global Info.vi ZLIB Get Version.vi ZLIB Go To First File.vi ZLIB Go To Next File.vi ZLIB Initialize File Functions.vi ZLIB Locate File.vi ZLIB Open Read File.vi ZLIB Open Unzip Archive.vi ZLIB Open Write File.vi ZLIB Open Zip Archive.vi ZLIB Path to Path String.vi ZLIB Read Compressed File.vi ZLIB Read Compressed Stream.vi ZLIB Read Local Extra Data.vi ZLIB Store Stream.vi ZLIB Transfer Raw File.vi ZLIB VI Tree.vi ZLIB Write File.vi ZLIB Write Stream.vi Log Message: Cahnged all Call Library Nodes to be reentrant Index: ZLIB Enumerate File Contents.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Enumerate File Contents.vi,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 Binary files /tmp/cvsv5MUqw and /tmp/cvsrGE6st differ Index: ZLIB Go To First File.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Go To First File.vi,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 Binary files /tmp/cvsDzjlCv and /tmp/cvscRsNGs differ Index: ZLIB Delete Files From Archive.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Delete Files From Archive.vi,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 Binary files /tmp/cvsfCoIlz and /tmp/cvsZ0Ratw differ Index: ZLIB Store Stream.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Store Stream.vi,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsc5i7eB and /tmp/cvsc8eApy differ Index: ZLIB Open Zip Archive.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Open Zip Archive.vi,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 Binary files /tmp/cvsdX846C and /tmp/cvs27JgkA differ Index: ZLIB Open Unzip Archive.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Open Unzip Archive.vi,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 Binary files /tmp/cvsPBU8ZC and /tmp/cvsIEKVgA differ Index: ZLIB Write Stream.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Write Stream.vi,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsYPS1xE and /tmp/cvsXaJ7QB differ Index: ZLIB Close Zip Archive.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Close Zip Archive.vi,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 Binary files /tmp/cvsHP7AgI and /tmp/cvsKEBZBF differ Index: ZLIB Locate File.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Locate File.vi,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 Binary files /tmp/cvsz2LWcH and /tmp/cvsL4PIAE differ Index: ZLIB Open Write File.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Open Write File.vi,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 Binary files /tmp/cvs8cUi6K and /tmp/cvsi80bxI differ Index: ZLIB Write File.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Write File.vi,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 Binary files /tmp/cvs3LZ52M and /tmp/cvso9BSwK differ Index: ZLIB Read Compressed File.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Read Compressed File.vi,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 Binary files /tmp/cvsdTym8O and /tmp/cvsBKRHFM differ Index: ZLIB Transfer Raw File.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Transfer Raw File.vi,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsxNc3mO and /tmp/cvsfwy5WL differ Index: ZLIB Get Current File Info.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Get Current File Info.vi,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 Binary files /tmp/cvsZGvkrS and /tmp/cvsHgHr4P differ Index: ZLIB Close Read File.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Close Read File.vi,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 Binary files /tmp/cvsgczJqU and /tmp/cvsGVKw6R differ Index: ZLIB Get Global Info.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Get Global Info.vi,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 Binary files /tmp/cvs1SqbxT and /tmp/cvs1KMAfR differ Index: ZLIB Path to Path String.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Path to Path String.vi,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsmt23oX and /tmp/cvsC2yN9U differ Index: ZLIB Copy Raw File.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Copy Raw File.vi,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 Binary files /tmp/cvsDvwF9Y and /tmp/cvsz4UMXW differ Index: ZLIB Read Compressed Stream.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Read Compressed Stream.vi,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsnExLuY and /tmp/cvsMxVglW differ Index: ZLIB VI Tree.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB VI Tree.vi,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 Binary files /tmp/cvsddS42Z and /tmp/cvsfqHYXX differ Index: ZLIB Open Read File.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Open Read File.vi,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 Binary files /tmp/cvsuBRSS2 and /tmp/cvsd7FNQ0 differ Index: ZLIB Initialize File Functions.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Initialize File Functions.vi,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Binary files /tmp/cvslnnSG6 and /tmp/cvsCzadH4 differ Index: ZLIB Read Local Extra Data.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Read Local Extra Data.vi,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsvPPNT5 and /tmp/cvsF02yW3 differ Index: ZLIB Get Version.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Get Version.vi,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvseHznr7 and /tmp/cvsDVL7v5 differ Index: ZLIB Close Unzip Archive.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Close Unzip Archive.vi,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 Binary files /tmp/cvsq3mbOa and /tmp/cvsLip3U8 differ Index: ZLIB Go To Next File.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Go To Next File.vi,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 Binary files /tmp/cvsk8KVP9 and /tmp/cvsbxD9Y7 differ Index: ZLIB Close Write File.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Close Write File.vi,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 Binary files /tmp/cvs1p8Iud and /tmp/cvsrfTfGb differ |
From: Rolf K. <lab...@us...> - 2007-09-11 06:25:45
|
Update of /cvsroot/opengtoolkit/lvzip/source/lvzip.llb In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv24576 Modified Files: ZLIB VI Tree.vi Log Message: Index: ZLIB VI Tree.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB VI Tree.vi,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 Binary files /tmp/cvsmtXUKB and /tmp/cvsNxpHgN differ |
From: Rolf K. <lab...@us...> - 2007-09-11 06:24:47
|
Update of /cvsroot/opengtoolkit/lvzip/source/lvzip.llb In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv24138 Modified Files: ZLIB Extract File.vi ZLIB Store File.vi ZLIB VI Tree.vi Added Files: ZLIB Extract Stream.vi ZLIB Extract.vi ZLIB Get Stream CRC32.vi ZLIB Read Compressed Stream.vi ZLIB Store Stream.vi ZLIB Store.vi ZLIB Write Stream.vi Log Message: Added stream based extraction to and adding from memory directly. Index: ZLIB Store File.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Store File.vi,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 Binary files /tmp/cvsd6NPFj and /tmp/cvs4WCPQq differ --- NEW FILE: ZLIB Extract Stream.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ZLIB Store Stream.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ZLIB Get Stream CRC32.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ZLIB Extract.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ZLIB Write Stream.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ZLIB Store.vi --- (This appears to be a binary file; contents omitted.) Index: ZLIB Extract File.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Extract File.vi,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 Binary files /tmp/cvsYUQwlo and /tmp/cvslDR4zv differ --- NEW FILE: ZLIB Read Compressed Stream.vi --- (This appears to be a binary file; contents omitted.) Index: ZLIB VI Tree.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB VI Tree.vi,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 Binary files /tmp/cvsYIUmiq and /tmp/cvsCvytBx differ |
From: Rolf K. <lab...@us...> - 2007-04-02 22:03:39
|
Update of /cvsroot/opengtoolkit/lvzip/source In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv18070 Modified Files: lvzlib.dll Log Message: Fix a possible error due to an uninitialized stack variable, when reading a ZIP archive that has no global comment information at all. Index: lvzlib.dll =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzlib.dll,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 Binary files /tmp/cvsIk1C2r and /tmp/cvscLU7Wi differ |
From: Rolf K. <lab...@us...> - 2007-04-02 21:30:44
|
Update of /cvsroot/opengtoolkit/lvzip/source/lvzip.llb In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv3316 Modified Files: ZLIB Close Read File.vi ZLIB Delete Files From Archive.vi ZLIB Extract File.vi ZLIB Get Global Info.vi ZLIB Open Zip Archive.vi ZLIB VI Tree.vi Log Message: Index: ZLIB Open Zip Archive.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Open Zip Archive.vi,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 Binary files /tmp/cvsmOZhSq and /tmp/cvsT8bgKx differ Index: ZLIB Extract File.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Extract File.vi,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 Binary files /tmp/cvscSzg0h and /tmp/cvs47cwXo differ Index: ZLIB Get Global Info.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Get Global Info.vi,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 Binary files /tmp/cvs7Xfcik and /tmp/cvsQmNVir differ Index: ZLIB Close Read File.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Close Read File.vi,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 Binary files /tmp/cvsSzkUqm and /tmp/cvszds3ut differ Index: ZLIB Delete Files From Archive.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Delete Files From Archive.vi,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 Binary files /tmp/cvsMlN8mo and /tmp/cvsz0c7uv differ Index: ZLIB VI Tree.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB VI Tree.vi,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 Binary files /tmp/cvsaIipKq and /tmp/cvscSKrXx differ |
From: Rolf K. <lab...@us...> - 2007-04-02 21:25:41
|
Update of /cvsroot/opengtoolkit/lvzip/source/lvzip.llb In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv1092 Modified Files: ZLIB Close Zip Archive.vi ZLIB Compress Directory.vi ZLIB Compress Files.vi ZLIB Copy Raw File.vi Log Message: Revert last change as it is not necessary. The close function takes care of that if an empty string is passed. Index: ZLIB Copy Raw File.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Copy Raw File.vi,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 Binary files /tmp/cvsUPPvMu and /tmp/cvsAvfum0 differ Index: ZLIB Compress Directory.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Compress Directory.vi,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 Binary files /tmp/cvs2V4QYw and /tmp/cvsMRmZC2 differ Index: ZLIB Close Zip Archive.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Close Zip Archive.vi,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 Binary files /tmp/cvsLWjFzz and /tmp/cvsqDbph5 differ Index: ZLIB Compress Files.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Compress Files.vi,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 Binary files /tmp/cvsVRhB4B and /tmp/cvsrXjEQ7 differ |
From: Rolf K. <lab...@us...> - 2007-04-02 21:11:54
|
Update of /cvsroot/opengtoolkit/lvzip/c_source/lvzip.xcode In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv29005/lvzip.xcode Modified Files: project.pbxproj Log Message: Fix a possible error due to an uninitialized stack variable, when reading a ZIP archive that has no global comment information at all. Index: project.pbxproj =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/lvzip.xcode/project.pbxproj,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** project.pbxproj 1 Mar 2006 09:54:13 -0000 1.5 --- project.pbxproj 2 Apr 2007 21:11:48 -0000 1.6 *************** *** 568,571 **** --- 568,572 ---- GCC_GENERATE_DEBUGGING_SYMBOLS = YES; GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = DEBUG; ZERO_LINK = YES; }; *************** *** 694,697 **** --- 695,699 ---- GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS = NO; + GCC_WARN_UNINITIALIZED_AUTOS = NO; GCC_WARN_UNKNOWN_PRAGMAS = NO; GCC_WARN_UNUSED_PARAMETER = YES; |
From: Rolf K. <lab...@us...> - 2007-04-02 21:11:54
|
Update of /cvsroot/opengtoolkit/lvzip/c_source In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv29005 Modified Files: unzip.c zip.c zlib.rc Log Message: Fix a possible error due to an uninitialized stack variable, when reading a ZIP archive that has no global comment information at all. Index: unzip.c =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/unzip.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** unzip.c 7 Jan 2006 20:06:23 -0000 1.5 --- unzip.c 2 Apr 2007 21:11:48 -0000 1.6 *************** *** 175,179 **** { unsigned char c; ! int err = (int)ZREAD(*pzlib_filefunc_def,filestream,&c,1); if (err==1) { --- 175,182 ---- { unsigned char c; ! int err; ! ! *pi = 0; ! err = (int)ZREAD(*pzlib_filefunc_def,filestream,&c,1); if (err==1) { Index: zlib.rc =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/zlib.rc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** zlib.rc 7 Jan 2006 20:06:23 -0000 1.4 --- zlib.rc 2 Apr 2007 21:11:48 -0000 1.5 *************** *** 3,8 **** #define IDR_VERSION1 1 IDR_VERSION1 VERSIONINFO MOVEABLE IMPURE LOADONCALL DISCARDABLE ! FILEVERSION 1,2,3,0 ! PRODUCTVERSION 1,2,3,0 FILEFLAGSMASK VS_FFI_FILEFLAGSMASK FILEFLAGS 0 --- 3,8 ---- #define IDR_VERSION1 1 IDR_VERSION1 VERSIONINFO MOVEABLE IMPURE LOADONCALL DISCARDABLE ! FILEVERSION 1,2,3,1 ! PRODUCTVERSION 1,2,3,1 FILEFLAGSMASK VS_FFI_FILEFLAGSMASK FILEFLAGS 0 *************** *** 18,22 **** BEGIN VALUE "FileDescription", "LabVIEW zlib data compression library\0" ! VALUE "FileVersion", "1.2.3.0.LV6\0" VALUE "InternalName", "lvzlib\0" VALUE "OriginalFilename", "lvzlib.dll\0" --- 18,22 ---- BEGIN VALUE "FileDescription", "LabVIEW zlib data compression library\0" ! VALUE "FileVersion", "1.2.3.1.LV6\0" VALUE "InternalName", "lvzlib\0" VALUE "OriginalFilename", "lvzlib.dll\0" Index: zip.c =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/zip.c,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** zip.c 7 Jan 2006 20:06:23 -0000 1.7 --- zip.c 2 Apr 2007 21:11:48 -0000 1.8 *************** *** 344,348 **** { unsigned char c; ! int err = (int)ZREAD(*pzlib_filefunc_def,filestream,&c,1); if (err==1) { --- 344,351 ---- { unsigned char c; ! int err; ! ! *pi = 0; ! err = (int)ZREAD(*pzlib_filefunc_def,filestream,&c,1); if (err==1) { |
From: Rolf K. <lab...@us...> - 2007-04-02 19:34:08
|
Update of /cvsroot/opengtoolkit/lvzip/source/lvzip.llb In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23551 Modified Files: ZLIB Compress Directory.vi Log Message: Prevent global comment from being lost when copying into an existing archive Index: ZLIB Compress Directory.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Compress Directory.vi,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 Binary files /tmp/cvszmOHH6 and /tmp/cvsULW9q2 differ |