60b32e16e7
* include/freetype/config/ftoption.h, src/gzip/ftgzip.c: added support for the FT_CONFIG_OPTION_SYSTEM_ZLIB option, used to specify the use of system-wide zlib. Note that this macro, as well as FT_CONFIG_OPTION_BYTECODE_INTERPRETER, is not #undef-ed anymore. This allows the build system to define them depending on the configuration (typically by adding -D flags at compile time). * src/sfnt/ttcmap0.c (tt_face_build_cmaps): removed compiler warnings in optimized mode relative to the "volatile" local variables. This was not a compiler bug after all, but the fact that a pointer to a volatile variable is not the same than a volatile pointer to a variable :-) the fix was to change "volatile FT_Byte* p" into "FT_Byte* volatile p" * src/pfr/pfrload.c, src/pfr/pfrdrivr.c, src/gzip/inftrees.c: removed compiler warnings in optimized modes * src/gzip/*.[hc]: modified our ZLib copy in order to prevent exporting any zlib function names outside of the component. This prevents linking problems on some platforms, when applications want to link FreeType _and_ ZLib together. 2002-11-05 Juliusz <jch@pps.jussieu.fr> * src/psaux/psobjs.c (ps_table_add): modified increment loop in order to implement exponential behaviour
37 lines
1.0 KiB
C
37 lines
1.0 KiB
C
/* infblock.h -- header to use infblock.c
|
|
* Copyright (C) 1995-2002 Mark Adler
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef _INFBLOCK_H
|
|
#define _INFBLOCK_H
|
|
|
|
struct inflate_blocks_state;
|
|
typedef struct inflate_blocks_state FAR inflate_blocks_statef;
|
|
|
|
local inflate_blocks_statef * inflate_blocks_new OF((
|
|
z_streamp z,
|
|
check_func c, /* check function */
|
|
uInt w)); /* window size */
|
|
|
|
local int inflate_blocks OF((
|
|
inflate_blocks_statef *,
|
|
z_streamp ,
|
|
int)); /* initial return code */
|
|
|
|
local void inflate_blocks_reset OF((
|
|
inflate_blocks_statef *,
|
|
z_streamp ,
|
|
uLongf *)); /* check value on output */
|
|
|
|
local int inflate_blocks_free OF((
|
|
inflate_blocks_statef *,
|
|
z_streamp));
|
|
|
|
#endif /* _INFBLOCK_H */
|