From: Wez Furlong Date: Thu, 27 Nov 2003 17:58:58 +0000 (+0000) Subject: fix win32 build - thanks Sebastian. X-Git-Tag: php-5.0.0b3RC1~570 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6c0584d8f13025e3da5abe52b5ebd1b4b5c67a3f;p=php fix win32 build - thanks Sebastian. --- diff --git a/ext/com_dotnet/com_handlers.c b/ext/com_dotnet/com_handlers.c index 72537c9943..2911e693da 100644 --- a/ext/com_dotnet/com_handlers.c +++ b/ext/com_dotnet/com_handlers.c @@ -235,6 +235,12 @@ static int com_property_exists(zval *object, zval *member, int check_empty TSRML return 0; } +static int com_dimension_exists(zval *object, zval *member, int check_empty TSRMLS_DC) +{ + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Operation not yet supported on a COM object"); + return 0; +} + static void com_property_delete(zval *object, zval *member TSRMLS_DC) { php_error_docref(NULL TSRMLS_CC, E_WARNING, "Cannot delete properties from a COM object"); @@ -511,6 +517,7 @@ zend_object_handlers php_com_object_handlers = { com_object_set, com_property_exists, com_property_delete, + com_dimension_exists, com_dimension_delete, com_properties_get, com_method_get,