summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main/streams/memory.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/main/streams/memory.c b/main/streams/memory.c
index 9e906b355d..b5e434c4c7 100644
--- a/main/streams/memory.c
+++ b/main/streams/memory.c
@@ -282,7 +282,7 @@ PHPAPI php_stream_ops php_stream_memory_ops = {
php_stream_memory_seek,
php_stream_memory_cast,
php_stream_memory_stat,
- NULL /* php_stream_memory_set_option */
+ php_stream_memory_set_option
};
@@ -729,7 +729,7 @@ static php_stream * php_stream_url_wrap_rfc2397(php_stream_wrapper *wrapper, cha
return stream;
}
-static php_stream_wrapper_ops php_stream_rfc2397_wops = {
+PHPAPI php_stream_wrapper_ops php_stream_rfc2397_wops = {
php_stream_url_wrap_rfc2397,
NULL, /* close */
NULL, /* fstat */
@@ -742,7 +742,7 @@ static php_stream_wrapper_ops php_stream_rfc2397_wops = {
NULL /* rmdir */
};
-php_stream_wrapper php_stream_rfc2397_wrapper = {
+PHPAPI php_stream_wrapper php_stream_rfc2397_wrapper = {
&php_stream_rfc2397_wops,
NULL,
1, /* is_url */