From 4df3b824699d900869d3ee55371bdaf87174ea2d Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Mon, 26 Mar 2012 17:01:32 +0000 Subject: [PATCH] missed one file --- php_http_client_request.h | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 php_http_client_request.h 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 + */ -- 2.30.2