summaryrefslogtreecommitdiff
path: root/ext/curl/streams.c
diff options
context:
space:
mode:
authorEdin Kadribasic <edink@php.net>2003-06-19 23:07:14 +0000
committerEdin Kadribasic <edink@php.net>2003-06-19 23:07:14 +0000
commit7886bc93f60a564702b77650366434341e05d734 (patch)
tree2e8d2037a6aad02cd3db8888ca89a94f9e1d3c1a /ext/curl/streams.c
parent496d17b98da34b13734e686ed387592a824b846b (diff)
downloadphp-git-7886bc93f60a564702b77650366434341e05d734.tar.gz
Win32 build fixes
Diffstat (limited to 'ext/curl/streams.c')
-rw-r--r--ext/curl/streams.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/curl/streams.c b/ext/curl/streams.c
index cec4cf21de..88b8df609a 100644
--- a/ext/curl/streams.c
+++ b/ext/curl/streams.c
@@ -232,7 +232,7 @@ static int php_curl_stream_cast(php_stream *stream, int castas, void **ret TSRML
return php_stream_cast(curlstream->readbuffer.buf, castas, ret, 0);
}
-PHPAPI php_stream_ops php_curl_stream_ops = {
+php_stream_ops php_curl_stream_ops = {
php_curl_stream_write,
php_curl_stream_read,
php_curl_stream_close,
@@ -244,7 +244,7 @@ PHPAPI php_stream_ops php_curl_stream_ops = {
};
-PHPAPI php_stream *php_curl_stream_opener(php_stream_wrapper *wrapper, char *filename, char *mode,
+php_stream *php_curl_stream_opener(php_stream_wrapper *wrapper, char *filename, char *mode,
int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC)
{
php_stream *stream;