missed one file
authorMichael Wallner <mike@php.net>
Mon, 26 Mar 2012 17:01:32 +0000 (17:01 +0000)
committerMichael Wallner <mike@php.net>
Mon, 26 Mar 2012 17:01:32 +0000 (17:01 +0000)
php_http_client_request.h [new file with mode: 0644]

diff --git a/php_http_client_request.h b/php_http_client_request.h
new file mode 100644 (file)
index 0000000..36151d7
--- /dev/null
@@ -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 <mike@php.net>            |
+    +--------------------------------------------------------------------+
+*/
+
+#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
+ */