summaryrefslogtreecommitdiff
path: root/Zend/zend_object_handlers.h
diff options
context:
space:
mode:
authorHarald Radi <phanto@php.net>2002-04-22 14:22:27 +0000
committerHarald Radi <phanto@php.net>2002-04-22 14:22:27 +0000
commit6ac6cb1040c6ccf1157cf8d8384be1cb074c9281 (patch)
tree5714c26e375f3c3adaa32ac893552c0f85a970da /Zend/zend_object_handlers.h
parent6c491a565487f2219575f9d55e1cebf4f0b46654 (diff)
downloadphp-git-6ac6cb1040c6ccf1157cf8d8384be1cb074c9281.tar.gz
added get_class_entry callback handler to the
object handlers structure
Diffstat (limited to 'Zend/zend_object_handlers.h')
-rw-r--r--Zend/zend_object_handlers.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Zend/zend_object_handlers.h b/Zend/zend_object_handlers.h
index 62db624846..cce40f2271 100644
--- a/Zend/zend_object_handlers.h
+++ b/Zend/zend_object_handlers.h
@@ -43,6 +43,7 @@ typedef void (*zend_object_del_ref_t)(zval *object TSRMLS_DC);
typedef void (*zend_object_delete_obj_t)(zval *object TSRMLS_DC);
typedef zend_object_value (*zend_object_clone_obj_t)(zval *object TSRMLS_DC);
+typedef zend_class_entry **(*zend_object_get_class_entry_t)(zval *object TSRMLS_DC);
typedef int (*zend_object_get_class_name_t)(zval *object, char **class_name, zend_uint *class_name_len, int parent TSRMLS_DC);
typedef int (*zend_object_compare_t)(zval *object1, zval *object2 TSRMLS_DC);
@@ -65,6 +66,7 @@ typedef struct _zend_object_handlers {
zend_object_get_method_t get_method;
zend_object_call_method_t call_method;
zend_object_get_constructor_t get_constructor;
+ zend_object_get_class_entry_t get_class_entry;
zend_object_get_class_name_t get_class_name;
zend_object_compare_t compare_objects;
} zend_object_handlers;