mirror of
https://github.com/dhewm/dhewm3.git
synced 2024-12-03 01:32:38 +00:00
1b344d4b78
using amalgamated miniz 3.0.2 from https://github.com/richgel999/miniz and minizconf.h from Yamagi Quake II: https://github.com/yquake2/yquake2/blob/master/src/common/unzip/miniz/minizconf.h
59 lines
2 KiB
C
59 lines
2 KiB
C
/*
|
|
* Copyright (c) 2018 Yamagi Burmeister
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*
|
|
* --------------------------------------------------------------------
|
|
*
|
|
* Some additional definitions required by minizip and not provided
|
|
* by the miniz library.
|
|
*
|
|
* --------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef COMMON_UNZIP_MINIZCONF_H
|
|
#define COMMON_UNZIP_MINIZCONF_H
|
|
|
|
#ifndef OF
|
|
#define OF(args) args
|
|
#endif
|
|
|
|
#ifndef ZEXPORT
|
|
#define ZEXPORT
|
|
#endif
|
|
|
|
#ifndef z_off_t
|
|
#define z_off_t long
|
|
#endif
|
|
|
|
#if !defined(_WIN32) && defined(Z_LARGE64)
|
|
# define z_off64_t off64_t
|
|
#else
|
|
# if defined(_WIN32) && !defined(__GNUC__)
|
|
# define z_off64_t __int64
|
|
# else
|
|
# define z_off64_t z_off_t
|
|
# endif
|
|
#endif
|
|
|
|
#endif
|