separate http_env_request; add getQuer(), getPost(), getFiles()
[m6w6/ext-http] / php_http_env_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_ENV_REQUEST_H
14 #define PHP_HTTP_ENV_REQUEST_H
15
16 extern zend_class_entry *php_http_env_request_class_entry;
17 extern zend_function_entry php_http_env_request_method_entry[];
18
19 PHP_METHOD(HttpEnvRequest, __construct);
20 PHP_METHOD(HttpEnvRequest, getPost);
21 PHP_METHOD(HttpEnvRequest, getQuery);
22 PHP_METHOD(HttpEnvRequest, getFiles);
23
24 PHP_MINIT_FUNCTION(http_env_request);
25
26 #endif
27
28 /*
29 * Local variables:
30 * tab-width: 4
31 * c-basic-offset: 4
32 * End:
33 * vim600: noet sw=4 ts=4 fdm=marker
34 * vim<600: noet sw=4 ts=4
35 */