diff options
author | Gustavo Lopes <gustavo@icemobile.com> | 2013-01-09 17:00:04 +0100 |
---|---|---|
committer | Gustavo Lopes <gustavo@icemobile.com> | 2013-01-09 17:00:04 +0100 |
commit | 07590e6e456349192272da5ccfe8becbaa57fc67 (patch) | |
tree | 0a725052723c7dc9e5e2553bae0cbb713baa7fb9 /Zend/zend_API.h | |
parent | 13f1d53b689480776d70e256ebd3fc44fd2e253d (diff) | |
download | php-git-07590e6e456349192272da5ccfe8becbaa57fc67.tar.gz |
Export zend_parse_parameter()
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r-- | Zend/zend_API.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h index f65fb172c5..e54b240a4c 100644 --- a/Zend/zend_API.h +++ b/Zend/zend_API.h @@ -253,7 +253,7 @@ ZEND_API char *zend_zval_type_name(const zval *arg); ZEND_API int zend_parse_method_parameters(int num_args TSRMLS_DC, zval *this_ptr, const char *type_spec, ...); ZEND_API int zend_parse_method_parameters_ex(int flags, int num_args TSRMLS_DC, zval *this_ptr, const char *type_spec, ...); -int zend_parse_parameter(int flags, int arg_num TSRMLS_DC, zval **arg, const char *spec, ...); +ZEND_API int zend_parse_parameter(int flags, int arg_num TSRMLS_DC, zval **arg, const char *spec, ...); /* End of parameter parsing API -- andrei */ |