summaryrefslogtreecommitdiff
path: root/ext/spl/spl_exceptions.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_exceptions.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_exceptions.h')
-rwxr-xr-xext/spl/spl_exceptions.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/ext/spl/spl_exceptions.h b/ext/spl/spl_exceptions.h
index 752c988f6a..0f26e677b7 100755
--- a/ext/spl/spl_exceptions.h
+++ b/ext/spl/spl_exceptions.h
@@ -24,19 +24,19 @@
#include "php.h"
#include "php_spl.h"
-extern zend_class_entry *spl_ce_LogicException;
-extern zend_class_entry *spl_ce_BadFunctionCallException;
-extern zend_class_entry *spl_ce_BadMethodCallException;
-extern zend_class_entry *spl_ce_DomainException;
-extern zend_class_entry *spl_ce_InvalidArgumentException;
-extern zend_class_entry *spl_ce_LengthException;
-extern zend_class_entry *spl_ce_OutOfRangeException;
-
-extern zend_class_entry *spl_ce_RuntimeException;
-extern zend_class_entry *spl_ce_OutOfBoundsException;
-extern zend_class_entry *spl_ce_OverflowException;
-extern zend_class_entry *spl_ce_RangeException;
-extern zend_class_entry *spl_ce_UnderflowException;
+extern PHPAPI zend_class_entry *spl_ce_LogicException;
+extern PHPAPI zend_class_entry *spl_ce_BadFunctionCallException;
+extern PHPAPI zend_class_entry *spl_ce_BadMethodCallException;
+extern PHPAPI zend_class_entry *spl_ce_DomainException;
+extern PHPAPI zend_class_entry *spl_ce_InvalidArgumentException;
+extern PHPAPI zend_class_entry *spl_ce_LengthException;
+extern PHPAPI zend_class_entry *spl_ce_OutOfRangeException;
+
+extern PHPAPI zend_class_entry *spl_ce_RuntimeException;
+extern PHPAPI zend_class_entry *spl_ce_OutOfBoundsException;
+extern PHPAPI zend_class_entry *spl_ce_OverflowException;
+extern PHPAPI zend_class_entry *spl_ce_RangeException;
+extern PHPAPI zend_class_entry *spl_ce_UnderflowException;
PHP_MINIT_FUNCTION(spl_exceptions);