Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
unzipstb.c
Package: unzip540.zip [view]
Upload User: andy_li
Upload Date: 2007-01-06
Package Size: 1019k
Code Size: 2k
Category:
Compress-Decompress algrithms
Development Platform:
MultiPlatform
- /*---------------------------------------------------------------------------
- unzipstb.c
- Simple stub function for UnZip DLL (or shared library, whatever); does
- exactly the same thing as normal UnZip, except for additional printf()s
- of various version numbers, solely as a demonstration of what can/should
- be checked when using the DLL. (If major version numbers ever differ,
- assume program is incompatible with DLL--especially if DLL version is
- older. This is not likely to be a problem with *this* simple program,
- but most user programs will be much more complex.)
- ---------------------------------------------------------------------------*/
- #include <stdio.h>
- #include "unzip.h"
- #include "version.h"
- int main(int argc, char *argv[])
- {
- static UzpVer *pVersion; /* no pervert jokes, please... */
- pVersion = UzpVersion();
- printf("UnZip stub: checking version numbers (DLL is dated %s)n",
- pVersion->date);
- printf(" UnZip versions: expecting %d.%d%d, using %d.%d%d%sn",
- UZ_MAJORVER, UZ_MINORVER, PATCHLEVEL, pVersion->unzip.major,
- pVersion->unzip.minor, pVersion->unzip.patchlevel, pVersion->betalevel);
- printf(" ZipInfo versions: expecting %d.%d%d, using %d.%d%dn",
- ZI_MAJORVER, ZI_MINORVER, PATCHLEVEL, pVersion->zipinfo.major,
- pVersion->zipinfo.minor, pVersion->zipinfo.patchlevel);
- /*
- D2_M*VER and os2dll.* are obsolete, though retained for compatibility:
- printf(" OS2 DLL versions: expecting %d.%d%d, using %d.%d%dn",
- D2_MAJORVER, D2_MINORVER, PATCHLEVEL, pVersion->os2dll.major,
- pVersion->os2dll.minor, pVersion->os2dll.patchlevel);
- */
- if (pVersion->flag & 2)
- printf(" using zlib version %sn", pVersion->zlib_version);
- printf("n");
- /* call the actual UnZip routine (string-arguments version) */
- return UzpMain(argc, argv);
- }