summaryrefslogtreecommitdiff
path: root/ext/com_dotnet/com_handlers.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2003-10-05 08:08:49 +0000
committerZeev Suraski <zeev@php.net>2003-10-05 08:08:49 +0000
commitc6c240a455555864c8a70591c0a8bde0b8c0405b (patch)
tree5873e29e4e72c137910b7a772245fb1c023d62d9 /ext/com_dotnet/com_handlers.c
parent3f5acc73a5134e528cfd50d6d255a70af1918aa1 (diff)
downloadphp-git-c6c240a455555864c8a70591c0a8bde0b8c0405b.tar.gz
Sync with new API
Diffstat (limited to 'ext/com_dotnet/com_handlers.c')
-rw-r--r--ext/com_dotnet/com_handlers.c12
1 files changed, 1 insertions, 11 deletions
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,