summaryrefslogtreecommitdiff
path: root/ext/zip/php_zip.h
diff options
context:
space:
mode:
authorRemi Collet <remi@php.net>2020-03-05 10:57:26 +0100
committerRemi Collet <remi@php.net>2020-03-05 10:57:26 +0100
commit6f536052755445dfd2080fd596ddc552f7d129a5 (patch)
treeec1f83606db079dd0ba49ec45b4b860361aed128 /ext/zip/php_zip.h
parent32c2ae2939a360854acc46d7dfcd06d4a52c52e9 (diff)
downloadphp-git-6f536052755445dfd2080fd596ddc552f7d129a5.tar.gz
- make status, statusSys properties and
ZipArchive::getStatusString() method available after archive is closed
Diffstat (limited to 'ext/zip/php_zip.h')
-rw-r--r--ext/zip/php_zip.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/zip/php_zip.h b/ext/zip/php_zip.h
index f28937ebe2..1f3ec76f02 100644
--- a/ext/zip/php_zip.h
+++ b/ext/zip/php_zip.h
@@ -60,6 +60,8 @@ typedef struct _ze_zip_object {
int filename_len;
int buffers_cnt;
zip_int64_t last_id;
+ int err_zip;
+ int err_sys;
#ifdef HAVE_PROGRESS_CALLBACK
zval progress_callback;
#endif