| 1234567891011121314151617181920212223242526272829303132333435 | /*  +----------------------------------------------------------------------+  | XlsWriter Extension                                                  |  +----------------------------------------------------------------------+  | Copyright (c) 2017-2018 The Viest                                    |  +----------------------------------------------------------------------+  | http://www.viest.me                                                  |  +----------------------------------------------------------------------+  | Author: viest <[email protected]>                                 |  +----------------------------------------------------------------------+*/#include "include.h"zend_class_entry *vtiful_exception_ce;/** {{{ exception_methods*/zend_function_entry exception_methods[] = {        PHP_FE_END};/* }}} *//** {{{ VTIFUL_STARTUP_FUNCTION*/VTIFUL_STARTUP_FUNCTION(exception) {    zend_class_entry ce;    INIT_NS_CLASS_ENTRY(ce, "Vtiful\\Kernel", "Exception", exception_methods);    vtiful_exception_ce = zend_register_internal_class_ex(&ce, zend_ce_exception);    return SUCCESS;}/* }}} */
 |