1 /*
2   +----------------------------------------------------------------------+
3   | Yet Another Framework                                                |
4   +----------------------------------------------------------------------+
5   | This source file is subject to version 3.01 of the PHP license,      |
6   | that is bundled with this package in the file LICENSE, and is        |
7   | available through the world-wide-web at the following url:           |
8   | http://www.php.net/license/3_01.txt                                  |
9   | If you did not receive a copy of the PHP license and are unable to   |
10   | obtain it through the world-wide-web, please send a note to          |
11   | license@php.net so we can mail you a copy immediately.               |
12   +----------------------------------------------------------------------+
13   | Author: Xinchen Hui  <laruence@php.net>                              |
14   +----------------------------------------------------------------------+
15 */
16 
17 #ifndef YAF_BOOTSTRAP_H
18 #define YAF_BOOTSTRAP_H
19 
20 #define YAF_DEFAULT_BOOTSTRAP		  	"Bootstrap"
21 #define YAF_BOOTSTRAP_INITFUNC_PREFIX  	"_init"
22 
23 extern zend_class_entry *yaf_bootstrap_ce;
24 
25 YAF_STARTUP_FUNCTION(bootstrap);
26 #endif
27 /*
28  * Local variables:
29  * tab-width: 4
30  * c-basic-offset: 4
31  * End:
32  * vim600: noet sw=4 ts=4 fdm=marker
33  * vim<600: noet sw=4 ts=4
34  */
35