From 2ce7bcd742652d84c42b7e49472ca2f81efe363e Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Mon, 1 Nov 2004 20:57:23 +0000 Subject: - Allow direct access to spl class entries (SPL cannot be build shared) --- ext/spl/spl_array.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ext/spl/spl_array.c') 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; -- cgit v1.2.1