- http_get_request_headers() modified $_SERVER array keys
[m6w6/ext-http] / php_http_exception_object.h
1 /*
2 +--------------------------------------------------------------------+
3 | PECL :: http |
4 +--------------------------------------------------------------------+
5 | Redistribution and use in source and binary forms, with or without |
6 | modification, are permitted provided that the conditions mentioned |
7 | in the accompanying LICENSE file are met. |
8 +--------------------------------------------------------------------+
9 | Copyright (c) 2004-2005, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 /* $Id$ */
14
15 #ifndef PHP_HTTP_EXCEPTION_OBJECT_H
16 #define PHP_HTTP_EXCEPTION_OBJECT_H
17 #ifdef ZEND_ENGINE_2
18
19 PHP_MINIT_FUNCTION(http_exception_object);
20
21 extern zend_class_entry *http_exception_object_ce;
22 extern zend_function_entry http_exception_object_fe[];
23
24 #define http_exception_get_default _http_exception_get_default
25 extern zend_class_entry *_http_exception_get_default();
26
27 #define http_exception_get_for_code(c) _http_exception_get_for_code(c)
28 extern zend_class_entry *_http_exception_get_for_code(long code);
29
30 #endif
31 #endif
32
33 /*
34 * Local variables:
35 * tab-width: 4
36 * c-basic-offset: 4
37 * End:
38 * vim600: noet sw=4 ts=4 fdm=marker
39 * vim<600: noet sw=4 ts=4
40 */
41