diff options
| author | Marcus Boerger <helly@php.net> | 2005-10-03 16:05:08 +0000 |
|---|---|---|
| committer | Marcus Boerger <helly@php.net> | 2005-10-03 16:05:08 +0000 |
| commit | 308a64bc08a9c1f39619e83d9d6c502dd3edfdb8 (patch) | |
| tree | 1d34ac7d2c66607aed6f58dfe1d60630ed422087 /ext/simplexml/php_simplexml_exports.h | |
| parent | 42728f947c0ced85812439b24159d5a0b75594b5 (diff) | |
| download | php-git-308a64bc08a9c1f39619e83d9d6c502dd3edfdb8.tar.gz | |
- MFH Really allow SXE being shared by not using anything from it directly in SPL
Diffstat (limited to 'ext/simplexml/php_simplexml_exports.h')
| -rwxr-xr-x | ext/simplexml/php_simplexml_exports.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/simplexml/php_simplexml_exports.h b/ext/simplexml/php_simplexml_exports.h index 0b296df54e..db97da074e 100755 --- a/ext/simplexml/php_simplexml_exports.h +++ b/ext/simplexml/php_simplexml_exports.h @@ -52,6 +52,11 @@ php_sxe_fetch_object(zval *object TSRMLS_DC) ZEND_API void php_sxe_reset_iterator(php_sxe_object *sxe TSRMLS_DC); ZEND_API void php_sxe_move_forward_iterator(php_sxe_object *sxe TSRMLS_DC); +typedef struct { + zend_object_iterator intern; + php_sxe_object *sxe; +} php_sxe_iterator; + #endif /* PHP_SIMPLEXML_EXPORTS_H */ /** |
