From c6c240a455555864c8a70591c0a8bde0b8c0405b Mon Sep 17 00:00:00 2001 From: Zeev Suraski Date: Sun, 5 Oct 2003 08:08:49 +0000 Subject: Sync with new API --- ext/com_dotnet/com_handlers.c | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) (limited to 'ext/com_dotnet/com_handlers.c') diff --git a/ext/com_dotnet/com_handlers.c b/ext/com_dotnet/com_handlers.c index 0e8337c1ec..0b759ecc0e 100644 --- a/ext/com_dotnet/com_handlers.c +++ b/ext/com_dotnet/com_handlers.c @@ -204,15 +204,6 @@ static void com_write_dimension(zval *object, zval *offset, zval *value TSRMLS_D } } -static zval **com_property_get_ptr(zval *object, zval *member TSRMLS_DC) -{ - zval **prop_ptr; - - prop_ptr = emalloc(sizeof(zval **)); - *prop_ptr = com_property_read(object, member, 0 TSRMLS_CC); - return prop_ptr; -} - static void com_object_set(zval **property, zval *value TSRMLS_DC) { /* Not yet implemented in the engine */ @@ -512,8 +503,7 @@ zend_object_handlers php_com_object_handlers = { com_property_write, com_read_dimension, com_write_dimension, - com_property_get_ptr, - com_property_get_ptr, + NULL, com_object_get, com_object_set, com_property_exists, -- cgit v1.2.1