diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:24:43 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:24:43 -0700 |
commit | 6b8233bfe00e79134cb1b84fc49d4f750a797f79 (patch) | |
tree | ca2b03b0169568681dc3d9c823e9f0bc4417d6b5 /contrib/infback9/infback9.h | |
parent | 0484693e1723bbab791c56f95597bd7dbe867d03 (diff) | |
download | zlib-1.2.2.3.tar.gz zlib-1.2.2.3.tar.bz2 zlib-1.2.2.3.zip |
zlib 1.2.2.3v1.2.2.3
Diffstat (limited to 'contrib/infback9/infback9.h')
-rw-r--r-- | contrib/infback9/infback9.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/contrib/infback9/infback9.h b/contrib/infback9/infback9.h index 10bf58c..1073c0a 100644 --- a/contrib/infback9/infback9.h +++ b/contrib/infback9/infback9.h | |||
@@ -16,6 +16,10 @@ | |||
16 | * zlib.h must be included before this header file. | 16 | * zlib.h must be included before this header file. |
17 | */ | 17 | */ |
18 | 18 | ||
19 | #ifdef __cplusplus | ||
20 | extern "C" { | ||
21 | #endif | ||
22 | |||
19 | ZEXTERN int ZEXPORT inflateBack9 OF((z_stream FAR *strm, | 23 | ZEXTERN int ZEXPORT inflateBack9 OF((z_stream FAR *strm, |
20 | in_func in, void FAR *in_desc, | 24 | in_func in, void FAR *in_desc, |
21 | out_func out, void FAR *out_desc)); | 25 | out_func out, void FAR *out_desc)); |
@@ -27,3 +31,7 @@ ZEXTERN int ZEXPORT inflateBack9Init_ OF((z_stream FAR *strm, | |||
27 | #define inflateBack9Init(strm, window) \ | 31 | #define inflateBack9Init(strm, window) \ |
28 | inflateBack9Init_((strm), (window), \ | 32 | inflateBack9Init_((strm), (window), \ |
29 | ZLIB_VERSION, sizeof(z_stream)) | 33 | ZLIB_VERSION, sizeof(z_stream)) |
34 | |||
35 | #ifdef __cplusplus | ||
36 | } | ||
37 | #endif | ||