From: Michael Wallner Date: Mon, 26 Mar 2012 17:01:32 +0000 (+0000) Subject: missed one file X-Git-Tag: RELEASE_2_1_0_RC3~10^2^2~145^2~11 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=4df3b824699d900869d3ee55371bdaf87174ea2d;ds=sidebyside missed one file --- diff --git a/php_http_client_request.h b/php_http_client_request.h new file mode 100644 index 0000000..36151d7 --- /dev/null +++ b/php_http_client_request.h @@ -0,0 +1,37 @@ +/* + +--------------------------------------------------------------------+ + | PECL :: http | + +--------------------------------------------------------------------+ + | Redistribution and use in source and binary forms, with or without | + | modification, are permitted provided that the conditions mentioned | + | in the accompanying LICENSE file are met. | + +--------------------------------------------------------------------+ + | Copyright (c) 2004-2011, Michael Wallner | + +--------------------------------------------------------------------+ +*/ + +#ifndef PHP_HTTP_CLIENT_REQUEST_H +#define PHP_HTTP_CLIENT_REQUEST_H + +extern zend_class_entry *php_http_client_request_class_entry; +extern zend_function_entry php_http_client_request_method_entry[]; + +PHP_METHOD(HttpClientRequest, __construct); +PHP_METHOD(HttpClientRequest, setContentType); +PHP_METHOD(HttpClientRequest, getContentType); +PHP_METHOD(HttpClientRequest, setQuery); +PHP_METHOD(HttpClientRequest, getQuery); +PHP_METHOD(HttpClientRequest, addQuery); + +PHP_MINIT_FUNCTION(http_client_request); + +#endif /* PHP_HTTP_CLIENT_REQUEST_H */ + +/* + * Local variables: + * tab-width: 4 + * c-basic-offset: 4 + * End: + * vim600: noet sw=4 ts=4 fdm=marker + * vim<600: noet sw=4 ts=4 + */