diff options
author | Johannes Schlüter <johannes@php.net> | 2012-05-25 00:22:25 +0200 |
---|---|---|
committer | Johannes Schlüter <johannes@php.net> | 2012-05-25 00:22:25 +0200 |
commit | 8fc9df3f67dc35bff019f538934322583fd5fefd (patch) | |
tree | 6f83b92c64f85b3ea3fb4f346d46578d65fae055 /ext/com_dotnet/com_persist.c | |
parent | cfea8e5d04168d296d75dec21f8f0f920f563f00 (diff) | |
download | php-git-8fc9df3f67dc35bff019f538934322583fd5fefd.tar.gz |
Fix bug #62146 com_dotnet cannot be built shared, tested by Anatoliy
Diffstat (limited to 'ext/com_dotnet/com_persist.c')
-rwxr-xr-x | ext/com_dotnet/com_persist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/com_dotnet/com_persist.c b/ext/com_dotnet/com_persist.c index 96173af5df..fb940217e8 100755 --- a/ext/com_dotnet/com_persist.c +++ b/ext/com_dotnet/com_persist.c @@ -271,7 +271,7 @@ static void istream_destructor(php_istream *stm) } /* }}} */ -PHPAPI IStream *php_com_wrapper_export_stream(php_stream *stream TSRMLS_DC) +PHP_COM_DOTNET_API IStream *php_com_wrapper_export_stream(php_stream *stream TSRMLS_DC) { php_istream *stm = (php_istream*)CoTaskMemAlloc(sizeof(*stm)); |