- fix win32 build, really, for now
[m6w6/ext-http] / php_http_util_object.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-2006, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 /* $Id$ */
14
15 #ifndef PHP_HTTP_UTIL_OBJECT_H
16 #define PHP_HTTP_UTIL_OBJECT_H
17 #ifdef ZEND_ENGINE_2
18
19 extern zend_class_entry *http_util_object_ce;
20 extern zend_function_entry http_util_object_fe[];
21
22 extern PHP_MINIT_FUNCTION(http_util_object);
23
24 PHP_METHOD(HttpUtil, date);
25 PHP_METHOD(HttpUtil, buildUrl);
26 #ifndef PHP_WIN32
27 PHP_METHOD(HttpUtil, buildQuery);
28 #endif
29 PHP_METHOD(HttpUtil, negotiateLanguage);
30 PHP_METHOD(HttpUtil, negotiateCharset);
31 PHP_METHOD(HttpUtil, negotiateContentType);
32 PHP_METHOD(HttpUtil, matchModified);
33 PHP_METHOD(HttpUtil, matchEtag);
34 PHP_METHOD(HttpUtil, parseHeaders);
35 PHP_METHOD(HttpUtil, parseMessage);
36 PHP_METHOD(HttpUtil, parseCookie);
37 PHP_METHOD(HttpUtil, chunkedDecode);
38 PHP_METHOD(HttpUtil, deflate);
39 PHP_METHOD(HttpUtil, inflate);
40 PHP_METHOD(HttpUtil, support);
41
42 #endif
43 #endif
44
45 /*
46 * Local variables:
47 * tab-width: 4
48 * c-basic-offset: 4
49 * End:
50 * vim600: noet sw=4 ts=4 fdm=marker
51 * vim<600: noet sw=4 ts=4
52 */
53