VirtualBox

source: vbox/trunk/src/libs/libpng-1.2.54/contrib/pngminim/encoder/dummy_inflate.c@ 78327

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
3int ZEXPORT inflate(strm, flush)
4z_streamp strm;
5int flush;
6{ return Z_OK ; }
7
8int ZEXPORT inflateReset(strm)
9z_streamp strm;
10{ return Z_OK ; }
11
12int ZEXPORT inflateEnd(strm)
13z_streamp strm;
14{ return Z_STREAM_ERROR ; }
15
16int ZEXPORT inflateInit_(strm, version, stream_size)
17z_streamp strm;
18const char *version;
19int stream_size;
20{ return Z_OK ; }
21
22int ZEXPORT inflateInit2_(strm, windowBits, version, stream_size)
23z_streamp strm;
24int windowBits;
25const char *version;
26int stream_size;
27{ return Z_STREAM_ERROR ; }
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette