512dabebdac0b48c79517f5517e38b26f2c7aa15
[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 php_http_request_ops_t *php_http_neon_get_request_ops(void);
19
20 PHP_MINIT_FUNCTION(http_neon);
21 PHP_MSHUTDOWN_FUNCTION(http_neon);
22
23 extern zend_class_entry *php_http_neon_class_entry;
24 extern zend_function_entry php_http_neon_method_entry[];
25
26 #define php_http_neon_new php_http_object_new
27
28 PHP_METHOD(HttpNEON, __construct);
29
30 #endif /* PHP_HTTP_HAVE_NEON */
31 #endif /* PHP_HTTP_NEON_H */
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