2 * Copyright 2006 Jacek Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #define NONAMELESSUNION
25 #define NONAMELESSSTRUCT
32 #include "wine/debug.h"
33 #include "wine/unicode.h"
35 #include "mshtml_private.h"
37 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
39 #define CONTENT_LENGTH "Content-Length"
41 #define NSINSTREAM(x) ((nsIInputStream*) &(x)->lpInputStreamVtbl)
43 #define NSINSTREAM_THIS(iface) DEFINE_THIS(nsProtocolStream, InputStream, iface)
45 static nsresult NSAPI nsInputStream_QueryInterface(nsIInputStream *iface, nsIIDRef riid,
48 nsProtocolStream *This = NSINSTREAM_THIS(iface);
52 if(IsEqualGUID(&IID_nsISupports, riid)) {
53 TRACE("(%p)->(IID_nsISupports %p)\n", This, result);
54 *result = NSINSTREAM(This);
55 }else if(IsEqualGUID(&IID_nsIInputStream, riid)) {
56 TRACE("(%p)->(IID_nsIInputStream %p)\n", This, result);
57 *result = NSINSTREAM(This);
61 nsIInputStream_AddRef(NSINSTREAM(This));
65 WARN("unsupported interface %s\n", debugstr_guid(riid));
66 return NS_NOINTERFACE;
69 static nsrefcnt NSAPI nsInputStream_AddRef(nsIInputStream *iface)
71 nsProtocolStream *This = NSINSTREAM_THIS(iface);
72 LONG ref = InterlockedIncrement(&This->ref);
74 TRACE("(%p) ref=%ld\n", This, ref);
80 static nsrefcnt NSAPI nsInputStream_Release(nsIInputStream *iface)
82 nsProtocolStream *This = NSINSTREAM_THIS(iface);
83 LONG ref = InterlockedDecrement(&This->ref);
85 TRACE("(%p) ref=%ld\n", This, ref);
93 static nsresult NSAPI nsInputStream_Close(nsIInputStream *iface)
95 nsProtocolStream *This = NSINSTREAM_THIS(iface);
96 FIXME("(%p)\n", This);
97 return NS_ERROR_NOT_IMPLEMENTED;
100 static nsresult NSAPI nsInputStream_Available(nsIInputStream *iface, PRUint32 *_retval)
102 nsProtocolStream *This = NSINSTREAM_THIS(iface);
103 FIXME("(%p)->(%p)\n", This, _retval);
104 return NS_ERROR_NOT_IMPLEMENTED;
107 static nsresult NSAPI nsInputStream_Read(nsIInputStream *iface, char *aBuf, PRUint32 aCount,
110 nsProtocolStream *This = NSINSTREAM_THIS(iface);
112 TRACE("(%p)->(%p %ld %p)\n", This, aBuf, aCount, _retval);
114 /* Gecko always calls Read with big enough buffer */
115 if(aCount < This->buf_size)
116 FIXME("aCount < This->buf_size\n");
118 *_retval = This->buf_size;
120 memcpy(aBuf, This->buf, This->buf_size);
126 static nsresult NSAPI nsInputStream_ReadSegments(nsIInputStream *iface,
127 nsresult (WINAPI *aWriter)(nsIInputStream*,void*,const char*,PRUint32,PRUint32,PRUint32*),
128 void *aClousure, PRUint32 aCount, PRUint32 *_retval)
130 nsProtocolStream *This = NSINSTREAM_THIS(iface);
131 PRUint32 written = 0;
134 FIXME("(%p)->(%p %p %ld %p)\n", This, aWriter, aClousure, aCount, _retval);
139 if(This->buf_size > aCount)
140 FIXME("buf_size > aCount\n");
142 nsres = aWriter(NSINSTREAM(This), aClousure, This->buf, 0, This->buf_size, &written);
144 FIXME("aWritter failed: %08lx\n", nsres);
145 if(written != This->buf_size)
146 FIXME("written != buf_size\n");
148 This->buf_size -= written;
153 static nsresult NSAPI nsInputStream_IsNonBlocking(nsIInputStream *iface, PRBool *_retval)
155 nsProtocolStream *This = NSINSTREAM_THIS(iface);
156 FIXME("(%p)->(%p)\n", This, _retval);
157 return NS_ERROR_NOT_IMPLEMENTED;
160 #undef NSINSTREAM_THIS
162 static const nsIInputStreamVtbl nsInputStreamVtbl = {
163 nsInputStream_QueryInterface,
164 nsInputStream_AddRef,
165 nsInputStream_Release,
167 nsInputStream_Available,
169 nsInputStream_ReadSegments,
170 nsInputStream_IsNonBlocking
173 static nsProtocolStream *create_nsprotocol_stream(IStream *stream)
175 nsProtocolStream *ret = mshtml_alloc(sizeof(nsProtocolStream));
177 ret->lpInputStreamVtbl = &nsInputStreamVtbl;
184 #define STATUSCLB_THIS(iface) DEFINE_THIS(BSCallback, BindStatusCallback, iface)
186 static HRESULT WINAPI BindStatusCallback_QueryInterface(IBindStatusCallback *iface,
187 REFIID riid, void **ppv)
189 BSCallback *This = STATUSCLB_THIS(iface);
192 if(IsEqualGUID(&IID_IUnknown, riid)) {
193 TRACE("(%p)->(IID_IUnknown, %p)\n", This, ppv);
194 *ppv = STATUSCLB(This);
195 }else if(IsEqualGUID(&IID_IBindStatusCallback, riid)) {
196 TRACE("(%p)->(IID_IBindStatusCallback, %p)\n", This, ppv);
197 *ppv = STATUSCLB(This);
198 }else if(IsEqualGUID(&IID_IServiceProvider, riid)) {
199 TRACE("(%p)->(IID_IServiceProvider %p)\n", This, ppv);
200 *ppv = SERVPROV(This);
201 }else if(IsEqualGUID(&IID_IHttpNegotiate, riid)) {
202 TRACE("(%p)->(IID_IHttpNegotiate %p)\n", This, ppv);
203 *ppv = HTTPNEG(This);
204 }else if(IsEqualGUID(&IID_IHttpNegotiate2, riid)) {
205 TRACE("(%p)->(IID_IHttpNegotiate2 %p)\n", This, ppv);
206 *ppv = HTTPNEG(This);
207 }else if(IsEqualGUID(&IID_IInternetBindInfo, riid)) {
208 TRACE("(%p)->(IID_IInternetBindInfo %p)\n", This, ppv);
209 *ppv = BINDINFO(This);
213 IBindStatusCallback_AddRef(STATUSCLB(This));
217 TRACE("Unsupported riid = %s\n", debugstr_guid(riid));
218 return E_NOINTERFACE;
221 static ULONG WINAPI BindStatusCallback_AddRef(IBindStatusCallback *iface)
223 BSCallback *This = STATUSCLB_THIS(iface);
224 LONG ref = InterlockedIncrement(&This->ref);
226 TRACE("(%p) ref = %ld\n", This, ref);
231 static ULONG WINAPI BindStatusCallback_Release(IBindStatusCallback *iface)
233 BSCallback *This = STATUSCLB_THIS(iface);
234 LONG ref = InterlockedDecrement(&This->ref);
236 TRACE("(%p) ref = %ld\n", This, ref);
240 GlobalFree(This->post_data);
242 nsIChannel_Release(NSCHANNEL(This->nschannel));
244 nsIStreamListener_Release(This->nslistener);
246 nsISupports_Release(This->nscontext);
248 nsIInputStream_Release(NSINSTREAM(This->nsstream));
249 mshtml_free(This->headers);
256 static HRESULT WINAPI BindStatusCallback_OnStartBinding(IBindStatusCallback *iface,
257 DWORD dwReserved, IBinding *pbind)
259 BSCallback *This = STATUSCLB_THIS(iface);
260 FIXME("(%p)->(%ld %p)\n", This, dwReserved, pbind);
264 static HRESULT WINAPI BindStatusCallback_GetPriority(IBindStatusCallback *iface, LONG *pnPriority)
266 BSCallback *This = STATUSCLB_THIS(iface);
267 FIXME("(%p)->(%p)\n", This, pnPriority);
271 static HRESULT WINAPI BindStatusCallback_OnLowResource(IBindStatusCallback *iface, DWORD reserved)
273 BSCallback *This = STATUSCLB_THIS(iface);
274 FIXME("(%p)->(%ld)\n", This, reserved);
278 static HRESULT WINAPI BindStatusCallback_OnProgress(IBindStatusCallback *iface, ULONG ulProgress,
279 ULONG ulProgressMax, ULONG ulStatusCode, LPCWSTR szStatusText)
281 BSCallback *This = STATUSCLB_THIS(iface);
283 TRACE("%p)->(%lu %lu %lu %s)\n", This, ulProgress, ulProgressMax, ulStatusCode,
284 debugstr_w(szStatusText));
286 switch(ulStatusCode) {
287 case BINDSTATUS_MIMETYPEAVAILABLE: {
292 mshtml_free(This->nschannel->content);
294 len = WideCharToMultiByte(CP_ACP, 0, szStatusText, -1, NULL, 0, NULL, NULL);
295 This->nschannel->content = mshtml_alloc(len*sizeof(WCHAR));
296 WideCharToMultiByte(CP_ACP, 0, szStatusText, -1, This->nschannel->content, -1, NULL, NULL);
303 static HRESULT WINAPI BindStatusCallback_OnStopBinding(IBindStatusCallback *iface,
304 HRESULT hresult, LPCWSTR szError)
306 BSCallback *This = STATUSCLB_THIS(iface);
308 TRACE("(%p)->(%08lx %s)\n", This, hresult, debugstr_w(szError));
311 nsIStreamListener_OnStopRequest(This->nslistener, (nsIRequest*)NSCHANNEL(This->nschannel),
312 This->nscontext, NS_OK);
317 static HRESULT WINAPI BindStatusCallback_GetBindInfo(IBindStatusCallback *iface,
318 DWORD *grfBINDF, BINDINFO *pbindinfo)
320 BSCallback *This = STATUSCLB_THIS(iface);
323 TRACE("(%p)->(%p %p)\n", This, grfBINDF, pbindinfo);
325 *grfBINDF = BINDF_ASYNCHRONOUS | BINDF_ASYNCSTORAGE | BINDF_PULLDATA;
327 size = pbindinfo->cbSize;
328 memset(pbindinfo, 0, size);
329 pbindinfo->cbSize = size;
331 pbindinfo->cbStgmedData = This->post_data_len;
332 pbindinfo->dwCodePage = CP_UTF8;
333 pbindinfo->dwOptions = 0x00020000;
335 if(This->post_data) {
336 pbindinfo->dwBindVerb = BINDVERB_POST;
338 pbindinfo->stgmedData.tymed = TYMED_HGLOBAL;
339 pbindinfo->stgmedData.u.hGlobal = This->post_data;
340 pbindinfo->stgmedData.pUnkForRelease = (IUnknown*)STATUSCLB(This);
341 IBindStatusCallback_AddRef(STATUSCLB(This));
347 static HRESULT WINAPI BindStatusCallback_OnDataAvailable(IBindStatusCallback *iface,
348 DWORD grfBSCF, DWORD dwSize, FORMATETC *pformatetc, STGMEDIUM *pstgmed)
350 BSCallback *This = STATUSCLB_THIS(iface);
354 TRACE("(%p)->(%08lx %ld %p %p)\n", This, grfBSCF, dwSize, pformatetc, pstgmed);
356 if(This->nslistener) {
357 if(!This->nsstream) {
358 This->nsstream = create_nsprotocol_stream(pstgmed->u.pstm);
360 nsres = nsIStreamListener_OnStartRequest(This->nslistener,
361 (nsIRequest*)NSCHANNEL(This->nschannel), This->nscontext);
363 FIXME("OnStartRequest failed: %08lx\n", nsres);
367 hres = IStream_Read(pstgmed->u.pstm, This->nsstream->buf, sizeof(This->nsstream->buf),
368 &This->nsstream->buf_size);
369 if(This->nsstream->buf_size) {
370 nsres = nsIStreamListener_OnDataAvailable(This->nslistener,
371 (nsIRequest*)NSCHANNEL(This->nschannel), This->nscontext,
372 NSINSTREAM(This->nsstream), 0 /* FIXME */, dwSize);
374 FIXME("OnDataAvailable failed: %08lx\n", nsres);
376 if(This->nsstream->buf_size)
377 FIXME("buffer is not empty!\n");
381 }while(hres == S_OK);
387 static HRESULT WINAPI BindStatusCallback_OnObjectAvailable(IBindStatusCallback *iface,
388 REFIID riid, IUnknown *punk)
390 BSCallback *This = STATUSCLB_THIS(iface);
391 FIXME("(%p)->(%s %p)\n", This, debugstr_guid(riid), punk);
395 #undef STATUSCLB_THIS
397 static const IBindStatusCallbackVtbl BindStatusCallbackVtbl = {
398 BindStatusCallback_QueryInterface,
399 BindStatusCallback_AddRef,
400 BindStatusCallback_Release,
401 BindStatusCallback_OnStartBinding,
402 BindStatusCallback_GetPriority,
403 BindStatusCallback_OnLowResource,
404 BindStatusCallback_OnProgress,
405 BindStatusCallback_OnStopBinding,
406 BindStatusCallback_GetBindInfo,
407 BindStatusCallback_OnDataAvailable,
408 BindStatusCallback_OnObjectAvailable
411 #define HTTPNEG_THIS(iface) DEFINE_THIS(BSCallback, HttpNegotiate2, iface)
413 static HRESULT WINAPI HttpNegotiate_QueryInterface(IHttpNegotiate2 *iface,
414 REFIID riid, void **ppv)
416 BSCallback *This = HTTPNEG_THIS(iface);
417 return IBindStatusCallback_QueryInterface(STATUSCLB(This), riid, ppv);
420 static ULONG WINAPI HttpNegotiate_AddRef(IHttpNegotiate2 *iface)
422 BSCallback *This = HTTPNEG_THIS(iface);
423 return IBindStatusCallback_AddRef(STATUSCLB(This));
426 static ULONG WINAPI HttpNegotiate_Release(IHttpNegotiate2 *iface)
428 BSCallback *This = HTTPNEG_THIS(iface);
429 return IBindStatusCallback_Release(STATUSCLB(This));
432 static HRESULT WINAPI HttpNegotiate_BeginningTransaction(IHttpNegotiate2 *iface,
433 LPCWSTR szURL, LPCWSTR szHeaders, DWORD dwReserved, LPWSTR *pszAdditionalHeaders)
435 BSCallback *This = HTTPNEG_THIS(iface);
438 TRACE("(%p)->(%s %s %ld %p)\n", This, debugstr_w(szURL), debugstr_w(szHeaders),
439 dwReserved, pszAdditionalHeaders);
442 *pszAdditionalHeaders = NULL;
446 size = (strlenW(This->headers)+1)*sizeof(WCHAR);
447 *pszAdditionalHeaders = CoTaskMemAlloc(size);
448 memcpy(*pszAdditionalHeaders, This->headers, size);
453 static HRESULT WINAPI HttpNegotiate_OnResponse(IHttpNegotiate2 *iface, DWORD dwResponseCode,
454 LPCWSTR szResponseHeaders, LPCWSTR szRequestHeaders, LPWSTR *pszAdditionalRequestHeaders)
456 BSCallback *This = HTTPNEG_THIS(iface);
457 FIXME("(%p)->(%ld %s %s %p)\n", This, dwResponseCode, debugstr_w(szResponseHeaders),
458 debugstr_w(szRequestHeaders), pszAdditionalRequestHeaders);
462 static HRESULT WINAPI HttpNegotiate_GetRootSecurityId(IHttpNegotiate2 *iface,
463 BYTE *pbSecurityId, DWORD *pcbSecurityId, DWORD_PTR dwReserved)
465 BSCallback *This = HTTPNEG_THIS(iface);
466 FIXME("(%p)->(%p %p %ld)\n", This, pbSecurityId, pcbSecurityId, dwReserved);
472 static const IHttpNegotiate2Vtbl HttpNegotiate2Vtbl = {
473 HttpNegotiate_QueryInterface,
474 HttpNegotiate_AddRef,
475 HttpNegotiate_Release,
476 HttpNegotiate_BeginningTransaction,
477 HttpNegotiate_OnResponse,
478 HttpNegotiate_GetRootSecurityId
481 #define BINDINFO_THIS(iface) DEFINE_THIS(BSCallback, InternetBindInfo, iface)
483 static HRESULT WINAPI InternetBindInfo_QueryInterface(IInternetBindInfo *iface,
484 REFIID riid, void **ppv)
486 BSCallback *This = BINDINFO_THIS(iface);
487 return IBindStatusCallback_QueryInterface(STATUSCLB(This), riid, ppv);
490 static ULONG WINAPI InternetBindInfo_AddRef(IInternetBindInfo *iface)
492 BSCallback *This = BINDINFO_THIS(iface);
493 return IBindStatusCallback_AddRef(STATUSCLB(This));
496 static ULONG WINAPI InternetBindInfo_Release(IInternetBindInfo *iface)
498 BSCallback *This = BINDINFO_THIS(iface);
499 return IBindStatusCallback_Release(STATUSCLB(This));
502 static HRESULT WINAPI InternetBindInfo_GetBindInfo(IInternetBindInfo *iface,
503 DWORD *grfBINDF, BINDINFO *pbindinfo)
505 BSCallback *This = BINDINFO_THIS(iface);
506 FIXME("(%p)->(%p %p)\n", This, grfBINDF, pbindinfo);
510 static HRESULT WINAPI InternetBindInfo_GetBindString(IInternetBindInfo *iface,
511 ULONG ulStringType, LPOLESTR *ppwzStr, ULONG cEl, ULONG *pcElFetched)
513 BSCallback *This = BINDINFO_THIS(iface);
514 FIXME("(%p)->(%lu %p %lu %p)\n", This, ulStringType, ppwzStr, cEl, pcElFetched);
520 static const IInternetBindInfoVtbl InternetBindInfoVtbl = {
521 InternetBindInfo_QueryInterface,
522 InternetBindInfo_AddRef,
523 InternetBindInfo_Release,
524 InternetBindInfo_GetBindInfo,
525 InternetBindInfo_GetBindString
528 #define SERVPROV_THIS(iface) DEFINE_THIS(BSCallback, ServiceProvider, iface)
530 static HRESULT WINAPI BSCServiceProvider_QueryInterface(IServiceProvider *iface,
531 REFIID riid, void **ppv)
533 BSCallback *This = SERVPROV_THIS(iface);
534 return IBindStatusCallback_QueryInterface(STATUSCLB(This), riid, ppv);
537 static ULONG WINAPI BSCServiceProvider_AddRef(IServiceProvider *iface)
539 BSCallback *This = SERVPROV_THIS(iface);
540 return IBindStatusCallback_AddRef(STATUSCLB(This));
543 static ULONG WINAPI BSCServiceProvider_Release(IServiceProvider *iface)
545 BSCallback *This = SERVPROV_THIS(iface);
546 return IBindStatusCallback_Release(STATUSCLB(This));
549 static HRESULT WINAPI BSCServiceProvider_QueryService(IServiceProvider *iface,
550 REFGUID guidService, REFIID riid, void **ppv)
552 BSCallback *This = SERVPROV_THIS(iface);
553 FIXME("(%p)->(%s %s %p)\n", This, debugstr_guid(guidService), debugstr_guid(riid), ppv);
559 static const IServiceProviderVtbl ServiceProviderVtbl = {
560 BSCServiceProvider_QueryInterface,
561 BSCServiceProvider_AddRef,
562 BSCServiceProvider_Release,
563 BSCServiceProvider_QueryService
566 BSCallback *create_bscallback(HTMLDocument *doc, LPCOLESTR url)
568 BSCallback *ret = mshtml_alloc(sizeof(BSCallback));
570 ret->lpBindStatusCallbackVtbl = &BindStatusCallbackVtbl;
571 ret->lpServiceProviderVtbl = &ServiceProviderVtbl;
572 ret->lpHttpNegotiate2Vtbl = &HttpNegotiate2Vtbl;
573 ret->lpInternetBindInfoVtbl = &InternetBindInfoVtbl;
575 ret->post_data = NULL;
577 ret->post_data_len = 0;
578 ret->nschannel = NULL;
579 ret->nslistener = NULL;
580 ret->nscontext = NULL;
581 ret->nsstream = NULL;
586 static void parse_post_data(nsIInputStream *post_data_stream, LPWSTR *headers_ret,
587 HGLOBAL *post_data_ret, ULONG *post_data_len_ret)
589 PRUint32 post_data_len = 0, available = 0;
590 HGLOBAL post_data = NULL;
591 LPWSTR headers = NULL;
592 DWORD headers_len = 0, len;
593 const char *ptr, *ptr2, *post_data_end;
595 nsIInputStream_Available(post_data_stream, &available);
596 post_data = GlobalAlloc(0, available+1);
597 nsIInputStream_Read(post_data_stream, post_data, available, &post_data_len);
599 TRACE("post_data = %s\n", debugstr_an(post_data, post_data_len));
601 ptr = ptr2 = post_data;
602 post_data_end = (const char*)post_data+post_data_len;
604 while(ptr < post_data_end && (*ptr != '\r' || ptr[1] != '\n')) {
605 while(ptr < post_data_end && (*ptr != '\r' || ptr[1] != '\n'))
615 if(ptr-ptr2 >= sizeof(CONTENT_LENGTH)
616 && CompareStringA(LOCALE_SYSTEM_DEFAULT, NORM_IGNORECASE,
617 CONTENT_LENGTH, sizeof(CONTENT_LENGTH)-1,
618 ptr2, sizeof(CONTENT_LENGTH)-1) == CSTR_EQUAL) {
623 len = MultiByteToWideChar(CP_ACP, 0, ptr2, ptr-ptr2, NULL, 0);
626 headers = mshtml_realloc(headers,(headers_len+len+1)*sizeof(WCHAR));
628 headers = mshtml_alloc((len+1)*sizeof(WCHAR));
630 len = MultiByteToWideChar(CP_ACP, 0, ptr2, ptr-ptr2, headers+headers_len, -1);
636 headers[headers_len] = 0;
637 *headers_ret = headers;
639 if(ptr >= post_data_end-2) {
640 GlobalFree(post_data);
647 post_data_len -= ptr-(const char*)post_data;
648 memmove(post_data, ptr, post_data_len);
649 post_data = GlobalReAlloc(post_data, post_data_len+1, 0);
652 *post_data_ret = post_data;
653 *post_data_len_ret = post_data_len;
656 void hlink_frame_navigate(HTMLDocument *doc, IHlinkFrame *hlink_frame,
657 LPCWSTR uri, nsIInputStream *post_data_stream, DWORD hlnf)
659 BSCallback *callback;
664 callback = create_bscallback(doc, uri);
666 if(post_data_stream) {
667 parse_post_data(post_data_stream, &callback->headers, &callback->post_data,
668 &callback->post_data_len);
669 TRACE("headers = %s post_data = %s\n", debugstr_w(callback->headers),
670 debugstr_an(callback->post_data, callback->post_data_len));
673 CreateAsyncBindCtx(0, STATUSCLB(callback), NULL, &bindctx);
675 hlink = Hlink_Create();
677 CreateURLMoniker(NULL, uri, &mon);
678 IHlink_SetMonikerReference(hlink, 0, mon, NULL);
680 if(hlnf & HLNF_OPENINNEWWINDOW) {
681 static const WCHAR wszBlank[] = {'_','b','l','a','n','k',0};
682 IHlink_SetTargetFrameName(hlink, wszBlank); /* FIXME */
685 IHlinkFrame_Navigate(hlink_frame, hlnf, bindctx, STATUSCLB(callback), hlink);
687 IBindCtx_Release(bindctx);
688 IBindStatusCallback_Release(STATUSCLB(callback));
689 IMoniker_Release(mon);
693 HRESULT start_binding(BSCallback *bscallback, IMoniker *mon)
699 hres = CreateAsyncBindCtx(0, STATUSCLB(bscallback), NULL, &bctx);
701 WARN("CreateAsyncBindCtx failed: %08lx\n", hres);
705 hres = IMoniker_BindToStorage(mon, bctx, NULL, &IID_IStream, (void**)&str);
706 IBindCtx_Release(bctx);
708 WARN("BindToStorage failed: %08lx\n", hres);
713 IStream_Release(str);