summaryrefslogtreecommitdiff
path: root/Zend/zend_object_handlers.h
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2003-02-02 16:17:25 +0000
committerZeev Suraski <zeev@php.net>2003-02-02 16:17:25 +0000
commit61bd944b32c142c62b9e05c583237e36db3dddb7 (patch)
tree5d09f30277498b6fb5a2a28ca1a19ec127dd5e83 /Zend/zend_object_handlers.h
parent53060ef869d8a0877d5375b24a77060a06f2f3a4 (diff)
downloadphp-git-61bd944b32c142c62b9e05c583237e36db3dddb7.tar.gz
Core rearrangements - move Zend Objects specific code to their
specific implementation file
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 22e3c76386..f879220ac4 100644
--- a/Zend/zend_object_handlers.h
+++ b/Zend/zend_object_handlers.h
@@ -93,6 +93,8 @@ typedef struct _zend_object_handlers {
} zend_object_handlers;
extern zend_object_handlers std_object_handlers;
+union _zend_function *zend_get_static_method(zend_class_entry *ce, char *function_name_strval, int function_name_strlen TSRMLS_DC);
+
#define IS_ZEND_STD_OBJECT(z) ((z).type == IS_OBJECT && (Z_OBJ_HT((z))->get_class_entry != NULL))
#define HAS_CLASS_ENTRY(z) (Z_OBJ_HT(z)->get_class_entry != NULL)