summaryrefslogtreecommitdiff
path: root/Zend/zend_API.h
diff options
context:
space:
mode:
authorDerick Rethans <github@derickrethans.nl>2012-08-24 10:55:17 +0200
committerDerick Rethans <github@derickrethans.nl>2012-08-24 10:55:17 +0200
commite5bfcd340a8e6aa9e46bef43894c78c06e80a3c8 (patch)
tree7e11e961bd43b1eb3af7149ce8af8b03d7f4ac2c /Zend/zend_API.h
parent0a2833bbefd803a63014429973b14839718975e2 (diff)
parent13bcf685cb0a92e502ebe39f4b22c64304a9f333 (diff)
downloadphp-git-e5bfcd340a8e6aa9e46bef43894c78c06e80a3c8.tar.gz
Merge branch 'PHP-5.3' of git.php.net:/php-src into PHP-5.3
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r--Zend/zend_API.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h
index 0a2a595557..ddd84fa584 100644
--- a/Zend/zend_API.h
+++ b/Zend/zend_API.h
@@ -170,6 +170,11 @@ typedef struct _zend_fcall_info_cache {
int _len = class_name_len; \
class_container.name = zend_strndup(class_name, _len); \
class_container.name_length = _len; \
+ INIT_CLASS_ENTRY_INIT_METHODS(class_container, functions, handle_fcall, handle_propget, handle_propset, handle_propunset, handle_propisset) \
+ }
+
+#define INIT_CLASS_ENTRY_INIT_METHODS(class_container, functions, handle_fcall, handle_propget, handle_propset, handle_propunset, handle_propisset) \
+ { \
class_container.builtin_functions = functions; \
class_container.constructor = NULL; \
class_container.destructor = NULL; \