12345678910111213141516171819202122232425262728293031323334353637 |
- #ifdef __cplusplus
- extern "C" {
- #endif
- ZEXTERN int ZEXPORT inflateBack9 OF((z_stream FAR *strm,
- in_func in, void FAR *in_desc,
- out_func out, void FAR *out_desc));
- ZEXTERN int ZEXPORT inflateBack9End OF((z_stream FAR *strm));
- ZEXTERN int ZEXPORT inflateBack9Init_ OF((z_stream FAR *strm,
- unsigned char FAR *window,
- const char *version,
- int stream_size));
- #define inflateBack9Init(strm, window) \
- inflateBack9Init_((strm), (window), \
- ZLIB_VERSION, sizeof(z_stream))
- #ifdef __cplusplus
- }
- #endif
|