summaryrefslogtreecommitdiff
path: root/ext/spl/spl_array.h
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2004-11-01 20:57:23 +0000
committerMarcus Boerger <helly@php.net>2004-11-01 20:57:23 +0000
commit2ce7bcd742652d84c42b7e49472ca2f81efe363e (patch)
tree72f6b992926fb0ffdaecedf56979e55e20447e6c /ext/spl/spl_array.h
parent4dbf6a530df57d74d2844a8fd1ea6826e4002fd3 (diff)
downloadphp-git-2ce7bcd742652d84c42b7e49472ca2f81efe363e.tar.gz
- Allow direct access to spl class entries (SPL cannot be build shared)
Diffstat (limited to 'ext/spl/spl_array.h')
-rwxr-xr-xext/spl/spl_array.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/spl/spl_array.h b/ext/spl/spl_array.h
index f075be6f91..9bbe5a4711 100755
--- a/ext/spl/spl_array.h
+++ b/ext/spl/spl_array.h
@@ -24,9 +24,9 @@
#include "php.h"
#include "php_spl.h"
-extern zend_class_entry *spl_ce_ArrayObject;
-extern zend_class_entry *spl_ce_ArrayIterator;
-extern zend_class_entry *spl_ce_Countable;
+extern PHPAPI zend_class_entry *spl_ce_ArrayObject;
+extern PHPAPI zend_class_entry *spl_ce_ArrayIterator;
+extern PHPAPI zend_class_entry *spl_ce_Countable;
PHP_MINIT_FUNCTION(spl_array);