diff options
author | Andi Gutmans <andi@php.net> | 2005-02-24 02:35:59 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2005-02-24 02:35:59 +0000 |
commit | 8140f095c68576561361c66c89c2d34a186ef18e (patch) | |
tree | b419838e9e5bac007440e8a85d9413ce598a2616 /Zend/zend_objects.h | |
parent | 5caddd66bae1323652b83aca30e4696aa1f1c507 (diff) | |
download | php-git-8140f095c68576561361c66c89c2d34a186ef18e.tar.gz |
- Revert following patch until we decide what is the right way to handle
- this:
- Fix signatures they are all meant to be able to deal with any type in any
object storage (though we are still missing several parts)
Diffstat (limited to 'Zend/zend_objects.h')
-rw-r--r-- | Zend/zend_objects.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_objects.h b/Zend/zend_objects.h index a9aaf71175..047d611d45 100644 --- a/Zend/zend_objects.h +++ b/Zend/zend_objects.h @@ -26,11 +26,11 @@ BEGIN_EXTERN_C() ZEND_API zend_object_value zend_objects_new(zend_object **object, zend_class_entry *class_type TSRMLS_DC); -ZEND_API void zend_objects_destroy_object(void *object, zend_object_handle handle TSRMLS_DC); +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 TSRMLS_DC); ZEND_API void zend_objects_clone_members(zend_object *new_object, zend_object_value new_obj_val, zend_object *old_object, zend_object_handle handle TSRMLS_DC); ZEND_API zend_object_value zend_objects_clone_obj(zval *object TSRMLS_DC); -ZEND_API void zend_objects_free_object_storage(void *object TSRMLS_DC); +ZEND_API void zend_objects_free_object_storage(zend_object *object TSRMLS_DC); END_EXTERN_C() #endif /* ZEND_OBJECTS_H */ |