summaryrefslogtreecommitdiff
path: root/ext/com_dotnet
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2003-11-27 17:58:58 +0000
committerWez Furlong <wez@php.net>2003-11-27 17:58:58 +0000
commit6c0584d8f13025e3da5abe52b5ebd1b4b5c67a3f (patch)
treef80ee4daa7c45c54d8892f32a8ee841639e3cb3e /ext/com_dotnet
parenteaf0942c8b3080e0dc545a8eb14938f341da16bc (diff)
downloadphp-git-6c0584d8f13025e3da5abe52b5ebd1b4b5c67a3f.tar.gz
fix win32 build - thanks Sebastian.
Diffstat (limited to 'ext/com_dotnet')
-rw-r--r--ext/com_dotnet/com_handlers.c7
1 files changed, 7 insertions, 0 deletions
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,