diff options
| author | Marcus Boerger <helly@php.net> | 2004-11-01 20:57:23 +0000 |
|---|---|---|
| committer | Marcus Boerger <helly@php.net> | 2004-11-01 20:57:23 +0000 |
| commit | 2ce7bcd742652d84c42b7e49472ca2f81efe363e (patch) | |
| tree | 72f6b992926fb0ffdaecedf56979e55e20447e6c /ext/spl/spl_array.c | |
| parent | 4dbf6a530df57d74d2844a8fd1ea6826e4002fd3 (diff) | |
| download | php-git-2ce7bcd742652d84c42b7e49472ca2f81efe363e.tar.gz | |
- Allow direct access to spl class entries (SPL cannot be build shared)
Diffstat (limited to 'ext/spl/spl_array.c')
| -rwxr-xr-x | ext/spl/spl_array.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/spl/spl_array.c b/ext/spl/spl_array.c index d13b36f2da..c3a037d9dd 100755 --- a/ext/spl/spl_array.c +++ b/ext/spl/spl_array.c @@ -114,12 +114,12 @@ static zend_function_entry spl_funcs_Countable[] = { }; zend_object_handlers spl_handler_ArrayObject; -zend_class_entry * spl_ce_ArrayObject; +PHPAPI zend_class_entry *spl_ce_ArrayObject; zend_object_handlers spl_handler_ArrayIterator; -zend_class_entry * spl_ce_ArrayIterator; +PHPAPI zend_class_entry *spl_ce_ArrayIterator; -zend_class_entry *spl_ce_Countable; +PHPAPI zend_class_entry *spl_ce_Countable; typedef struct _spl_array_object { zend_object std; |
