- highly experimental stream wrapper
[m6w6/ext-http] / php_http_wrapper_api.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-2005, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 /* $Id$ */
14
15 #ifndef PHP_HTTP_WRAPPER_API_H
16 #define PHP_HTTP_WRAPPER_API_H
17
18 #if defined(HTTP_HAVE_CURL) && defined(HTTP_HAVE_WRAPPER)
19
20 extern PHP_MINIT_FUNCTION(http_wrapper);
21 extern php_stream *http_wrapper_ex(php_stream_wrapper *wrapper, char *path, char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC);
22
23 PHP_HTTP_API php_stream_wrapper http_wrapper;
24
25 #endif
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 */
36