wez Sat Oct 18 11:56:17 2003 EDT
Modified files:
/php-src/ext/com_dotnet com_iterator.c
Log:
bah. does it really make any difference where rewind lives in the struct!?
Index: php-src/ext/com_dotnet/com_iterator.c
diff -u php-src/ext/com_dotnet/com_iterator.c:1.2
php-src/ext/com_dotnet/com_iterator.c:1.3
--- php-src/ext/com_dotnet/com_iterator.c:1.2 Fri Oct 17 17:03:01 2003
+++ php-src/ext/com_dotnet/com_iterator.c Sat Oct 18 11:56:16 2003
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: com_iterator.c,v 1.2 2003/10/17 21:03:01 wez Exp $ */
+/* $Id: com_iterator.c,v 1.3 2003/10/18 15:56:16 wez Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -113,11 +113,11 @@
static zend_object_iterator_funcs com_iter_funcs = {
com_iter_dtor,
- NULL, /* rewind */
com_iter_has_more,
com_iter_get_data,
com_iter_get_key,
- com_iter_move_forwards
+ com_iter_move_forwards,
+ NULL
};
zend_object_iterator *php_com_iter_get(zend_class_entry *ce, zval *object TSRMLS_DC)
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php