http\Env::parseParams()
[m6w6/ext-http] / php_http_curl.h
1 #ifndef PHP_HTTP_CURL_H
2 #define PHP_HTTP_CURL_H
3
4 PHP_HTTP_API php_http_request_ops_t *php_http_curl_get_request_ops(void);
5 PHP_HTTP_API php_http_request_pool_ops_t *php_http_curl_get_request_pool_ops(void);
6 PHP_HTTP_API php_http_request_datashare_ops_t *php_http_curl_get_request_datashare_ops(void);
7
8 extern PHP_MINIT_FUNCTION(http_curl);
9 extern PHP_MSHUTDOWN_FUNCTION(http_curl);
10 extern PHP_RINIT_FUNCTION(http_curl);
11
12 #ifdef PHP_HTTP_HAVE_EVENT
13 struct php_http_request_pool_globals {
14 void *event_base;
15 };
16 #endif
17
18 extern zend_class_entry *php_http_curl_class_entry;
19 extern zend_function_entry php_http_curl_method_entry[];
20
21 #define php_http_curl_new php_http_object_new
22
23 PHP_METHOD(HttpCURL, __construct);
24
25 #endif