Descent3/unzip/zutil.h

277 lines
9.1 KiB
C
Raw Normal View History

/*
* Descent 3
* Copyright (C) 2024 Parallax Software
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2024-04-16 03:43:29 +00:00
/*
2024-04-16 18:56:40 +00:00
* $Logfile: /DescentIII/Main/unzip/zutil.h $
* $Revision: 2 $
* $Date: 8/13/99 8:02p $
* $Author: Jeff $
*
* <insert description of file here>
*
* $Log: /DescentIII/Main/unzip/zutil.h $
*
2024-04-16 03:43:29 +00:00
* 2 8/13/99 8:02p Jeff
* initial creation of zip class
2024-04-16 18:56:40 +00:00
*
* $NoKeywords: $
*/
2024-04-16 03:43:29 +00:00
/* zutil.h -- internal interface and configuration of the compression library
* Copyright (C) 1995-1998 Jean-loup Gailly.
* For conditions of distribution and use, see copyright notice in zlib.h
*/
/* WARNING: this file should *not* be used by applications. It is
part of the implementation of the compression library and is
subject to change. Applications should only use zlib.h.
*/
/* @(#) $Id$ */
#ifndef _Z_UTIL_H
#define _Z_UTIL_H
#include "zlib.h"
#ifdef STDC
2024-04-16 18:56:40 +00:00
#include <stddef.h>
#include <string.h>
#include <stdlib.h>
2024-04-16 03:43:29 +00:00
#endif
#ifdef NO_ERRNO_H
2024-04-16 18:56:40 +00:00
extern int errno;
2024-04-16 03:43:29 +00:00
#else
2024-04-16 18:56:40 +00:00
#include <errno.h>
2024-04-16 03:43:29 +00:00
#endif
#ifndef local
2024-04-16 18:56:40 +00:00
#define local static
2024-04-16 03:43:29 +00:00
#endif
/* compile with -Dlocal if your debugger can't find static symbols */
2024-04-16 18:56:40 +00:00
typedef unsigned char uch;
2024-04-16 03:43:29 +00:00
typedef uch FAR uchf;
typedef unsigned short ush;
typedef ush FAR ushf;
2024-04-16 18:56:40 +00:00
typedef unsigned long ulg;
2024-04-16 03:43:29 +00:00
extern const char *z_errmsg[10]; /* indexed by 2-zlib_error */
/* (size given to avoid silly warnings with Visual C++) */
2024-04-16 18:56:40 +00:00
#define ERR_MSG(err) z_errmsg[Z_NEED_DICT - (err)]
2024-04-16 03:43:29 +00:00
2024-04-16 18:56:40 +00:00
#define ERR_RETURN(strm, err) return (strm->msg = (char *)ERR_MSG(err), (err))
2024-04-16 03:43:29 +00:00
/* To be used only when the state is known to be valid */
2024-04-16 18:56:40 +00:00
/* common constants */
2024-04-16 03:43:29 +00:00
#ifndef DEF_WBITS
2024-04-16 18:56:40 +00:00
#define DEF_WBITS MAX_WBITS
2024-04-16 03:43:29 +00:00
#endif
/* default windowBits for decompression. MAX_WBITS is for compression only */
#if MAX_MEM_LEVEL >= 8
2024-04-16 18:56:40 +00:00
#define DEF_MEM_LEVEL 8
2024-04-16 03:43:29 +00:00
#else
2024-04-16 18:56:40 +00:00
#define DEF_MEM_LEVEL MAX_MEM_LEVEL
2024-04-16 03:43:29 +00:00
#endif
/* default memLevel */
#define STORED_BLOCK 0
#define STATIC_TREES 1
2024-04-16 18:56:40 +00:00
#define DYN_TREES 2
2024-04-16 03:43:29 +00:00
/* The three kinds of block type */
2024-04-16 18:56:40 +00:00
#define MIN_MATCH 3
#define MAX_MATCH 258
2024-04-16 03:43:29 +00:00
/* The minimum and maximum match lengths */
#define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
2024-04-16 18:56:40 +00:00
/* target dependencies */
2024-04-16 03:43:29 +00:00
#ifdef MSDOS
2024-04-16 18:56:40 +00:00
#define OS_CODE 0x00
#if defined(__TURBOC__) || defined(__BORLANDC__)
#if (__STDC__ == 1) && (defined(__LARGE__) || defined(__COMPACT__))
/* Allow compilation with ANSI keywords only enabled */
void _Cdecl farfree(void *block);
void *_Cdecl farmalloc(unsigned long nbytes);
#else
#include <alloc.h>
#endif
#else /* MSC or DJGPP */
#include <malloc.h>
#endif
2024-04-16 03:43:29 +00:00
#endif
#ifdef OS2
2024-04-16 18:56:40 +00:00
#define OS_CODE 0x06
2024-04-16 03:43:29 +00:00
#endif
#ifdef WIN32 /* Window 95 & Windows NT */
2024-04-16 18:56:40 +00:00
#define OS_CODE 0x0b
2024-04-16 03:43:29 +00:00
#endif
#if defined(VAXC) || defined(VMS)
2024-04-16 18:56:40 +00:00
#define OS_CODE 0x02
#define F_OPEN(name, mode) fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512")
2024-04-16 03:43:29 +00:00
#endif
#ifdef AMIGA
2024-04-16 18:56:40 +00:00
#define OS_CODE 0x01
2024-04-16 03:43:29 +00:00
#endif
#if defined(ATARI) || defined(atarist)
2024-04-16 18:56:40 +00:00
#define OS_CODE 0x05
2024-04-16 03:43:29 +00:00
#endif
#if defined(MACOS) || defined(TARGET_OS_MAC)
2024-04-16 18:56:40 +00:00
#define OS_CODE 0x07
#if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os
#include <unix.h> /* for fdopen */
#else
#ifndef fdopen
#define fdopen(fd, mode) NULL /* No fdopen() */
#endif
#endif
2024-04-16 03:43:29 +00:00
#endif
#ifdef __50SERIES /* Prime/PRIMOS */
2024-04-16 18:56:40 +00:00
#define OS_CODE 0x0F
2024-04-16 03:43:29 +00:00
#endif
#ifdef TOPS20
2024-04-16 18:56:40 +00:00
#define OS_CODE 0x0a
2024-04-16 03:43:29 +00:00
#endif
#if defined(_BEOS_) || defined(RISCOS)
2024-04-16 18:56:40 +00:00
#define fdopen(fd, mode) NULL /* No fdopen() */
2024-04-16 03:43:29 +00:00
#endif
#if (defined(_MSC_VER) && (_MSC_VER > 600))
2024-04-16 18:56:40 +00:00
#define fdopen(fd, type) _fdopen(fd, type)
2024-04-16 03:43:29 +00:00
#endif
2024-04-16 18:56:40 +00:00
/* Common defaults */
2024-04-16 03:43:29 +00:00
#ifndef OS_CODE
2024-04-16 18:56:40 +00:00
#define OS_CODE 0x03 /* assume Unix */
2024-04-16 03:43:29 +00:00
#endif
#ifndef F_OPEN
2024-04-16 18:56:40 +00:00
#define F_OPEN(name, mode) fopen((name), (mode))
2024-04-16 03:43:29 +00:00
#endif
2024-04-16 18:56:40 +00:00
/* functions */
2024-04-16 03:43:29 +00:00
#ifdef HAVE_STRERROR
2024-04-16 18:56:40 +00:00
extern char *strerror OF((int));
#define zstrerror(errnum) strerror(errnum)
2024-04-16 03:43:29 +00:00
#else
2024-04-16 18:56:40 +00:00
#define zstrerror(errnum) ""
2024-04-16 03:43:29 +00:00
#endif
#if defined(pyr)
2024-04-16 18:56:40 +00:00
#define NO_MEMCPY
2024-04-16 03:43:29 +00:00
#endif
#if defined(SMALL_MEDIUM) && !defined(_MSC_VER) && !defined(__SC__)
2024-04-16 18:56:40 +00:00
/* Use our own functions for small and medium model with MSC <= 5.0.
* You may have to use the same strategy for Borland C (untested).
* The __SC__ check is for Symantec.
*/
#define NO_MEMCPY
2024-04-16 03:43:29 +00:00
#endif
#if defined(STDC) && !defined(HAVE_MEMCPY) && !defined(NO_MEMCPY)
2024-04-16 18:56:40 +00:00
#define HAVE_MEMCPY
2024-04-16 03:43:29 +00:00
#endif
#ifdef HAVE_MEMCPY
2024-04-16 18:56:40 +00:00
#ifdef SMALL_MEDIUM /* MSDOS small or medium model */
#define zmemcpy _fmemcpy
#define zmemcmp _fmemcmp
#define zmemzero(dest, len) _fmemset(dest, 0, len)
2024-04-16 03:43:29 +00:00
#else
2024-04-16 18:56:40 +00:00
#define zmemcpy memcpy
#define zmemcmp memcmp
#define zmemzero(dest, len) memset(dest, 0, len)
#endif
#else
extern void zmemcpy OF((Bytef * dest, const Bytef *source, uInt len));
extern int zmemcmp OF((const Bytef *s1, const Bytef *s2, uInt len));
extern void zmemzero OF((Bytef * dest, uInt len));
2024-04-16 03:43:29 +00:00
#endif
/* Diagnostic functions */
#ifdef DEBUG
2024-04-16 18:56:40 +00:00
#include <stdio.h>
extern int z_verbose;
extern void z_error OF((char *m));
#define Assert(cond, msg) \
{ \
if (!(cond)) \
z_error(msg); \
}
#define Trace(x) \
{ \
if (z_verbose >= 0) \
fprintf x; \
}
#define Tracev(x) \
{ \
if (z_verbose > 0) \
fprintf x; \
}
#define Tracevv(x) \
{ \
if (z_verbose > 1) \
fprintf x; \
}
#define Tracec(c, x) \
{ \
if (z_verbose > 0 && (c)) \
fprintf x; \
}
#define Tracecv(c, x) \
{ \
if (z_verbose > 1 && (c)) \
fprintf x; \
}
2024-04-16 03:43:29 +00:00
#else
2024-04-16 18:56:40 +00:00
#define Assert(cond, msg)
#define Trace(x)
#define Tracev(x)
#define Tracevv(x)
#define Tracec(c, x)
#define Tracecv(c, x)
2024-04-16 03:43:29 +00:00
#endif
2024-04-16 18:56:40 +00:00
typedef uLong(ZEXPORT *check_func) OF((uLong check, const Bytef *buf, uInt len));
2024-04-16 03:43:29 +00:00
voidpf zcalloc OF((voidpf opaque, unsigned items, unsigned size));
2024-04-16 18:56:40 +00:00
void zcfree OF((voidpf opaque, voidpf ptr));
#define ZALLOC(strm, items, size) (*((strm)->zalloc))((strm)->opaque, (items), (size))
#define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
#define TRY_FREE(s, p) \
{ \
if (p) \
ZFREE(s, p); \
}
2024-04-16 03:43:29 +00:00
#endif /* _Z_UTIL_H */