diff options
author | Harald Radi <phanto@php.net> | 2003-01-17 23:59:15 +0000 |
---|---|---|
committer | Harald Radi <phanto@php.net> | 2003-01-17 23:59:15 +0000 |
commit | 46306a3212fc676e0d6838d4bcaa5ac10fb093ee (patch) | |
tree | 0b3481d99d436f9efa3d683d8339aa9656db0e28 /Zend/zend_objects.h | |
parent | 054826b19255d72c374f506e50df253c550ed7c5 (diff) | |
download | php-git-46306a3212fc676e0d6838d4bcaa5ac10fb093ee.tar.gz |
export zend_objects_destroy_object()
static inline was meaningless anyways as the function
was only used as a callback handler and was never
called directly
Diffstat (limited to 'Zend/zend_objects.h')
-rw-r--r-- | Zend/zend_objects.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_objects.h b/Zend/zend_objects.h index 74a9663375..18cd01a5df 100644 --- a/Zend/zend_objects.h +++ b/Zend/zend_objects.h @@ -4,6 +4,7 @@ #include "zend.h" ZEND_API zend_object_value zend_objects_new(zend_object **object, zend_class_entry *class_type); +ZEND_API void zend_objects_destroy_object(zend_object *object, zend_object_handle handle TSRMLS_DC); ZEND_API zend_object *zend_objects_get_address(zval *object); ZEND_API zend_object_value zend_objects_clone_obj(zval *object TSRMLS_DC); |