Last change
on this file since 78327 was 58796, checked in by vboxsync, 9 years ago |
libpng 1.2.54 unmodified
|
-
Property svn:eol-style
set to
native
|
File size:
528 bytes
|
Line | |
---|
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 ; }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.