make the pool functional again
[m6w6/ext-http] / php_http_client_request.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_CLIENT_REQUEST_H
14 #define PHP_HTTP_CLIENT_REQUEST_H
15
16 extern zend_class_entry *php_http_client_request_class_entry;
17 extern zend_function_entry php_http_client_request_method_entry[];
18
19 PHP_METHOD(HttpClientRequest, __construct);
20 PHP_METHOD(HttpClientRequest, setContentType);
21 PHP_METHOD(HttpClientRequest, getContentType);
22 PHP_METHOD(HttpClientRequest, setQuery);
23 PHP_METHOD(HttpClientRequest, getQuery);
24 PHP_METHOD(HttpClientRequest, addQuery);
25
26 PHP_MINIT_FUNCTION(http_client_request);
27
28 #endif /* PHP_HTTP_CLIENT_REQUEST_H */
29
30 /*
31 * Local variables:
32 * tab-width: 4
33 * c-basic-offset: 4
34 * End:
35 * vim600: noet sw=4 ts=4 fdm=marker
36 * vim<600: noet sw=4 ts=4
37 */