diff options
author | Pierre Joye <pajoye@php.net> | 2010-12-13 18:43:10 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2010-12-13 18:43:10 +0000 |
commit | aea6771d1993cc6ea75e3dd75cfc54fb268dfaf0 (patch) | |
tree | 5149984f299d108d8d5a3c437156ab99b22aca57 /ext/zip/php_zip.c | |
parent | 4ee6b4dfbbbaec874598136c7355072504cb6fe8 (diff) | |
download | php-git-aea6771d1993cc6ea75e3dd75cfc54fb268dfaf0.tar.gz |
- add phpize support for windows, need a nmake install for now (nmake devel-pkg version is coming), works exactly the same as on unix, or should :)
Diffstat (limited to 'ext/zip/php_zip.c')
-rw-r--r-- | ext/zip/php_zip.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/zip/php_zip.c b/ext/zip/php_zip.c index 1b42c94457..38a0b5b5b8 100644 --- a/ext/zip/php_zip.c +++ b/ext/zip/php_zip.c @@ -735,8 +735,6 @@ static const zend_function_entry zip_functions[] = { static zend_class_entry *zip_class_entry; static zend_object_handlers zip_object_handlers; -static HashTable zip_prop_handlers; - typedef int (*zip_read_int_t)(struct zip *za TSRMLS_DC); typedef char *(*zip_read_const_char_t)(struct zip *za, int *len TSRMLS_DC); typedef char *(*zip_read_const_char_from_ze_t)(ze_zip_object *obj TSRMLS_DC); |