summaryrefslogtreecommitdiff
path: root/Zend/zend_default_classes.h
diff options
context:
space:
mode:
authorSterling Hughes <sterling@php.net>2003-03-23 04:32:24 +0000
committerSterling Hughes <sterling@php.net>2003-03-23 04:32:24 +0000
commite6dfbc9565e01ef5506c5501420a1bf0f2446656 (patch)
tree4008131563f15e42163e89f5184f1ef7c3a61aa3 /Zend/zend_default_classes.h
parent9c038be621ba1b3e0cc6497a089afa4bbfc87c9b (diff)
downloadphp-git-e6dfbc9565e01ef5506c5501420a1bf0f2446656.tar.gz
add a standard Exception class.
Diffstat (limited to 'Zend/zend_default_classes.h')
-rw-r--r--Zend/zend_default_classes.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/Zend/zend_default_classes.h b/Zend/zend_default_classes.h
new file mode 100644
index 0000000000..3e7eae54f4
--- /dev/null
+++ b/Zend/zend_default_classes.h
@@ -0,0 +1,38 @@
+/*
+ +----------------------------------------------------------------------+
+ | Zend Engine |
+ +----------------------------------------------------------------------+
+ | Copyright (c) 1998-2003 Zend Technologies Ltd. (http://www.zend.com) |
+ +----------------------------------------------------------------------+
+ | This source file is subject to version 2.00 of the Zend license, |
+ | that is bundled with this package in the file LICENSE, and is |
+ | available at through the world-wide-web at |
+ | http://www.zend.com/license/2_00.txt. |
+ | If you did not receive a copy of the Zend license and are unable to |
+ | obtain it through the world-wide-web, please send a note to |
+ | license@zend.com so we can mail you a copy immediately. |
+ +----------------------------------------------------------------------+
+ | Authors: Sterling Hughes <sterling@php.net> |
+ +----------------------------------------------------------------------+
+*/
+
+/* $Id$ */
+
+#ifndef ZEND_DEFAULT_INTERFACES_H
+#define ZEND_DEFAULT_INTERFACES_H
+
+BEGIN_EXTERN_C()
+
+ZEND_API void zend_register_default_classes(TSRMLS_D);
+
+END_EXTERN_C()
+
+#endif
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * indent-tabs-mode: t
+ * End:
+ */