header cleanups; fix IDE warnings
[m6w6/ext-http] / php_http_neon.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-2011, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 #ifndef PHP_HTTP_NEON_H
14 #define PHP_HTTP_NEON_H
15
16 #if PHP_HTTP_HAVE_NEON
17
18 #include "php_http_request.h"
19
20 php_http_request_ops_t *php_http_neon_get_request_ops(void);
21
22 PHP_MINIT_FUNCTION(http_neon);
23 PHP_MSHUTDOWN_FUNCTION(http_neon);
24
25 extern zend_class_entry *php_http_neon_class_entry;
26 extern zend_function_entry php_http_neon_method_entry[];
27
28 #define php_http_neon_new php_http_object_new
29
30 PHP_METHOD(HttpNEON, __construct);
31
32 #endif /* PHP_HTTP_HAVE_NEON */
33 #endif /* PHP_HTTP_NEON_H */
34
35 /*
36 * Local variables:
37 * tab-width: 4
38 * c-basic-offset: 4
39 * End:
40 * vim600: noet sw=4 ts=4 fdm=marker
41 * vim<600: noet sw=4 ts=4
42 */
43