
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5917 212acab6-be3b-0410-9dea-997c60f758d6
71 lines
1.5 KiB
C
71 lines
1.5 KiB
C
/*
|
|
* This file is a part of the zlib compression module for NSIS.
|
|
*
|
|
* Copyright and license information can be found below.
|
|
* Modifications Copyright (C) 1999-2009 Nullsoft and Contributors
|
|
*
|
|
* The original zlib source code is available at
|
|
* http://www.zlib.net/
|
|
*
|
|
* This software is provided 'as-is', without any express or implied
|
|
* warranty.
|
|
*/
|
|
|
|
/* zconf.h -- configuration of the zlib compression library
|
|
* Copyright (C) 1995-1998 Jean-loup Gailly.
|
|
* For conditions of distribution and use, see copyright notice in zlib.h
|
|
*/
|
|
|
|
/* @(#) $Id: ZCONF.H,v 1.2 2006/10/28 19:45:02 joostverburg Exp $ */
|
|
|
|
#ifndef _ZCONF_H
|
|
#define _ZCONF_H
|
|
|
|
|
|
#define MAX_MEM_LEVEL 9
|
|
|
|
/* Maximum value for windowBits in deflateInit2 and inflateInit2.
|
|
* WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files
|
|
* created by gzip. (Files created by minigzip can still be extracted by
|
|
* gzip.)
|
|
*/
|
|
#ifndef MAX_WBITS
|
|
# define MAX_WBITS 15 /* 32K LZ77 window */
|
|
#endif
|
|
|
|
#define OF(args) args
|
|
|
|
|
|
#ifndef ZEXPORT
|
|
# define ZEXPORT
|
|
#endif
|
|
#ifndef ZEXPORTVA
|
|
# define ZEXPORTVA
|
|
#endif
|
|
#ifndef ZEXTERN
|
|
# define ZEXTERN extern
|
|
#endif
|
|
|
|
#ifndef FAR
|
|
# define FAR
|
|
#endif
|
|
|
|
typedef unsigned char Byte; /* 8 bits */
|
|
typedef unsigned int uInt; /* 16 bits or more */
|
|
typedef unsigned long uLong; /* 32 bits or more */
|
|
|
|
typedef Byte FAR Bytef;
|
|
typedef char FAR charf;
|
|
typedef int FAR intf;
|
|
typedef uInt FAR uIntf;
|
|
typedef uLong FAR uLongf;
|
|
|
|
typedef void FAR *voidpf;
|
|
typedef void *voidp;
|
|
|
|
#ifndef z_off_t
|
|
# define z_off_t long
|
|
#endif
|
|
|
|
|
|
#endif /* _ZCONF_H */
|