- missing free
[m6w6/ext-http] / php_http_exception_object.h
1 /*
2 +----------------------------------------------------------------------+
3 | PECL :: http |
4 +----------------------------------------------------------------------+
5 | This source file is subject to version 3.0 of the PHP license, that |
6 | is bundled with this package in the file LICENSE, and is available |
7 | through the world-wide-web at http://www.php.net/license/3_0.txt. |
8 | If you did not receive a copy of the PHP license and are unable to |
9 | obtain it through the world-wide-web, please send a note to |
10 | license@php.net so we can mail you a copy immediately. |
11 +----------------------------------------------------------------------+
12 | Copyright (c) 2004-2005 Michael Wallner <mike@php.net> |
13 +----------------------------------------------------------------------+
14 */
15
16 /* $Id$ */
17
18 #ifndef PHP_HTTP_EXCEPTION_OBJECT_H
19 #define PHP_HTTP_EXCEPTION_OBJECT_H
20 #ifdef ZEND_ENGINE_2
21
22 extern zend_class_entry *http_exception_object_ce;
23 extern zend_function_entry http_exception_object_fe[];
24
25 #define http_exception_object_init() _http_exception_object_init(INIT_FUNC_ARGS_PASSTHRU)
26 extern void _http_exception_object_init(INIT_FUNC_ARGS);
27
28 #define http_exception_get_default _http_exception_get_default
29 extern zend_class_entry *_http_exception_get_default();
30
31 #define http_exception_get_for_code(c) _http_exception_get_for_code(c)
32 extern zend_class_entry *_http_exception_get_for_code(long code);
33
34 #endif
35 #endif
36
37 /*
38 * Local variables:
39 * tab-width: 4
40 * c-basic-offset: 4
41 * End:
42 * vim600: noet sw=4 ts=4 fdm=marker
43 * vim<600: noet sw=4 ts=4
44 */
45