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
consts.h
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
- /*---------------------------------------------------------------------------
- consts.h
- This file contains global, initialized variables that never change. It is
- included by unzip.c and windll/windll.c.
- ---------------------------------------------------------------------------*/
- /* And'ing with mask_bits[n] masks the lower n bits */
- ZCONST ush near mask_bits[] = {
- 0x0000,
- 0x0001, 0x0003, 0x0007, 0x000f, 0x001f, 0x003f, 0x007f, 0x00ff,
- 0x01ff, 0x03ff, 0x07ff, 0x0fff, 0x1fff, 0x3fff, 0x7fff, 0xffff
- };
- ZCONST char Far VersionDate[] = VERSION_DATE; /* now defined in version.h */
- #ifndef SFX
- ZCONST char Far EndSigMsg[] =
- "nnote: didn't find end-of-central-dir signature at end of central dir.n";
- #endif
- ZCONST char Far CentSigMsg[] =
- "error: expected central file header signature not found (file #%u).n";
- ZCONST char Far SeekMsg[] =
- "error [%s]: attempt to seek before beginning of zipfilen%s";
- ZCONST char Far FilenameNotMatched[] = "caution: filename not matched: %sn";
- ZCONST char Far ExclFilenameNotMatched[] =
- "caution: excluded filename not matched: %sn";
- #ifdef VMS
- ZCONST char Far ReportMsg[] = "
- (please check that you have transferred or created the zipfile in then
- appropriate BINARY mode--this includes ftp, Kermit, AND unzip'd zipfiles)n";
- #else
- ZCONST char Far ReportMsg[] = "
- (please check that you have transferred or created the zipfile in then
- appropriate BINARY mode and that you have compiled UnZip properly)n";
- #endif
- #ifndef SFX
- ZCONST char Far Zipnfo[] = "zipinfo";
- ZCONST char Far CompiledWith[] = "Compiled with %s%s for %s%s%s%s.nn";
- #endif