diff options
author | Matthew Trescott <matthewtrescott@gmail.com> | 2017-06-25 11:07:14 +0200 |
---|---|---|
committer | Bob Weinand <bobwei9@hotmail.com> | 2017-06-25 20:12:45 +0200 |
commit | 0c4f11ecaad213483f98c39128e217f9b389f604 (patch) | |
tree | 20b8274c15e8b46a71e435e03fe3eabde9db4643 /ext/zlib/php_zlib.h | |
parent | 2fddc4a7f1588239939a509781706c084939e09f (diff) | |
download | php-git-0c4f11ecaad213483f98c39128e217f9b389f604.tar.gz |
Add more constants, improve comments, and add tests
Diffstat (limited to 'ext/zlib/php_zlib.h')
-rw-r--r-- | ext/zlib/php_zlib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/zlib/php_zlib.h b/ext/zlib/php_zlib.h index d407455d33..e7f89055c7 100644 --- a/ext/zlib/php_zlib.h +++ b/ext/zlib/php_zlib.h @@ -48,6 +48,7 @@ typedef struct _php_zlib_buffer { typedef struct _php_zlib_context { z_stream Z; char *inflateDict; + size_t status; size_t inflateDictlen; php_zlib_buffer buffer; } php_zlib_context; |