#ifndef ZCONF_H
#define ZCONF_H
#include "../../src/common.h"
#if defined(_MSC_VER)
# pragma warning( disable : 4131 )
# pragma warning( disable : 4142 )
#endif
#define MAX_MEM_LEVEL 9
#define MAX_WBITS 15
#define ZEXTERN extern
#define ZEXPORT
#define ZEXPORTVA
#ifndef FAR
# define FAR
#endif
#define OF(args) args
#define Z_ARG(args) args
typedef unsigned char Byte;
typedef unsigned int uInt;
typedef unsigned long uLong;
typedef unsigned long z_crc_t;
typedef Byte FAR Bytef;
typedef char FAR charf;
typedef int FAR intf;
typedef uInt FAR uIntf;
typedef uLong FAR uLongf;
typedef void const *voidpc;
typedef void FAR *voidpf;
typedef void *voidp;
#define z_off_t git_off_t
#define z_off64_t z_off_t
#define z_const const
#endif