summaryrefslogtreecommitdiff
path: root/Build/source/extra/unzip/consts.h
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2009-11-15 22:43:45 +0000
committerKarl Berry <karl@freefriends.org>2009-11-15 22:43:45 +0000
commit860f96fed59d8da7fe4422b5a8c0c1dcea518d90 (patch)
tree50f13ecad371ce2c1495b25a4608067c60fc6693 /Build/source/extra/unzip/consts.h
parent9d05dba2e8395507a9f4a1f2d9b7ae08db9fa006 (diff)
remove unused (for ages) library code
git-svn-id: svn://tug.org/texlive/trunk@16021 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/extra/unzip/consts.h')
-rw-r--r--Build/source/extra/unzip/consts.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/Build/source/extra/unzip/consts.h b/Build/source/extra/unzip/consts.h
deleted file mode 100644
index f418a6c8fe1..00000000000
--- a/Build/source/extra/unzip/consts.h
+++ /dev/null
@@ -1,46 +0,0 @@
-/*---------------------------------------------------------------------------
-
- 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 zipfile\n%s";
-ZCONST char Far FilenameNotMatched[] = "caution: filename not matched: %s\n";
-ZCONST char Far ExclFilenameNotMatched[] =
- "caution: excluded filename not matched: %s\n";
-
-#ifdef VMS
- ZCONST char Far ReportMsg[] = "\
- (please check that you have transferred or created the zipfile in the\n\
- 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 the\n\
- 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.\n\n";
-#endif