misc/libfreetype/src/gzip/infcodes.h
author koda
Mon, 17 Jun 2013 17:40:01 +0200
changeset 9234 2bf3796c5855
parent 5172 88f2e05288ba
permissions -rw-r--r--
This commit changes many aspect of our cmake build system - shared libraries are compiled by default: * this modifies RPATH of unix executables; * this will prevent a lot of linking issues, esp. from pascal world; * the old behaviour (static libs) is still available with -DBUILD_SHARED_LIBS=off; * of course in this case you have to provide the full list of dependencies with FPFLAGS and CMAKE_C_FLAGS; - pascal is now fully integrated with cmake, meaning you can just do add_sources and use CMAKE_Pascal_FLAGS: * some of the language features are only partially implemented, for example .inc files will not get rebuilt if you modify them; * target_link_libraries for pascal targets is just dummy as linking is determined within pascal files; * universal builds for osx are not available any more; - bundled libraries and system libraries are addressed using the target name: * this avoids depedency tracking; * this allows to name output as we wish.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5172
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     1
/* infcodes.h -- header to use infcodes.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     2
 * Copyright (C) 1995-2002 Mark Adler
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     3
 * For conditions of distribution and use, see copyright notice in zlib.h
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     4
 */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     6
/* WARNING: this file should *not* be used by applications. It is
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     7
   part of the implementation of the compression library and is
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     8
   subject to change. Applications should only use zlib.h.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     9
 */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    10
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    11
#ifndef _INFCODES_H
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    12
#define _INFCODES_H
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    13
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    14
struct inflate_codes_state;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    15
typedef struct inflate_codes_state FAR inflate_codes_statef;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    16
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    17
local inflate_codes_statef *inflate_codes_new OF((
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    18
    uInt, uInt,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    19
    inflate_huft *, inflate_huft *,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    20
    z_streamp ));
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    21
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    22
local int inflate_codes OF((
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    23
    inflate_blocks_statef *,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    24
    z_streamp ,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    25
    int));
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    26
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    27
local void inflate_codes_free OF((
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    28
    inflate_codes_statef *,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    29
    z_streamp ));
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    30
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    31
#endif /* _INFCODES_H */