]> git.jsancho.org Git - lugaru.git/blob - Dependencies/libpng/contrib/pngminim/encoder/dummy_inflate.c
CMake: Purge all the bundled dependencies
[lugaru.git] / Dependencies / libpng / contrib / pngminim / encoder / dummy_inflate.c
1 #include "zlib.h"
2
3 int ZEXPORT inflate(strm, flush)
4 z_streamp strm;
5 int flush;
6 { return Z_OK ; }
7
8 int ZEXPORT inflateReset(strm)
9 z_streamp strm;
10 { return Z_OK ; }
11
12 int ZEXPORT inflateEnd(strm)
13 z_streamp strm;
14 { return Z_STREAM_ERROR ; }
15
16 int ZEXPORT inflateInit_(strm, version, stream_size)
17 z_streamp strm;
18 const char *version;
19 int stream_size;
20 { return Z_OK ; }
21
22 int ZEXPORT inflateInit2_(strm, windowBits, version, stream_size)
23 z_streamp strm;
24 int windowBits;
25 const char *version;
26 int stream_size;
27 { return Z_STREAM_ERROR ; }