wez Thu Nov 27 12:58:59 2003 EDT Modified files: /php-src/ext/com_dotnet com_handlers.c Log: fix win32 build - thanks Sebastian. Index: php-src/ext/com_dotnet/com_handlers.c diff -u php-src/ext/com_dotnet/com_handlers.c:1.5 php-src/ext/com_dotnet/com_handlers.c:1.6 --- php-src/ext/com_dotnet/com_handlers.c:1.5 Sun Oct 12 21:29:39 2003 +++ php-src/ext/com_dotnet/com_handlers.c Thu Nov 27 12:58:58 2003 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: com_handlers.c,v 1.5 2003/10/13 01:29:39 wez Exp $ */ +/* $Id: com_handlers.c,v 1.6 2003/11/27 17:58:58 wez Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -235,6 +235,12 @@ 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 @@ com_object_set, com_property_exists, com_property_delete, + com_dimension_exists, com_dimension_delete, com_properties_get, com_method_get,
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php