- http_globals.gzip_encoding needs to be sort of a real int
[m6w6/ext-http] / php_http_exception_object.h
index e89c576244ec158a91df9e5430f859376c256ad1..c3804c2e1928f5f6855884edaef217a3d3462619 100644 (file)
 #define PHP_HTTP_EXCEPTION_OBJECT_H
 #ifdef ZEND_ENGINE_2
 
+PHP_MINIT_FUNCTION(http_exception_object);
+
 extern zend_class_entry *http_exception_object_ce;
 extern zend_function_entry http_exception_object_fe[];
 
-#define http_exception_object_init _http_exception_object_init
-extern void _http_exception_object_init(INIT_FUNC_ARGS);
-
 #define http_exception_get_default _http_exception_get_default
 extern zend_class_entry *_http_exception_get_default();
 
+#define http_exception_get_for_code(c) _http_exception_get_for_code(c)
+extern zend_class_entry *_http_exception_get_for_code(long code);
+
 #endif
 #endif