4 * Copyright 2002,2005 Marcus Meissner
6 * The olerelay debug channel allows you to see calls marshalled by
7 * the typelib marshaller. It is not a generic COM relaying system.
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 #include "wine/port.h"
35 #define NONAMELESSUNION
36 #define NONAMELESSSTRUCT
46 #include "propidl.h" /* for LPSAFEARRAY_User* functions */
49 #include "wine/debug.h"
50 #include "wine/exception.h"
52 static const WCHAR IDispatchW
[] = { 'I','D','i','s','p','a','t','c','h',0};
54 WINE_DEFAULT_DEBUG_CHANNEL(ole
);
55 WINE_DECLARE_DEBUG_CHANNEL(olerelay
);
57 static HRESULT
TMarshalDispatchChannel_Create(
58 IRpcChannelBuffer
*pDelegateChannel
, REFIID tmarshal_riid
,
59 IRpcChannelBuffer
**ppChannel
);
61 typedef struct _marshal_state
{
67 /* used in the olerelay code to avoid having the L"" stuff added by debugstr_w */
68 static char *relaystr(WCHAR
*in
) {
69 char *tmp
= (char *)debugstr_w(in
);
71 tmp
[strlen(tmp
)-1] = '\0';
76 xbuf_resize(marshal_state
*buf
, DWORD newsize
)
78 if(buf
->size
>= newsize
)
83 buf
->base
= HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, buf
->base
, newsize
);
89 buf
->base
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, newsize
);
98 xbuf_add(marshal_state
*buf
, const BYTE
*stuff
, DWORD size
)
102 if(buf
->size
- buf
->curoff
< size
)
104 hr
= xbuf_resize(buf
, buf
->size
+ size
+ 100);
105 if(FAILED(hr
)) return hr
;
107 memcpy(buf
->base
+buf
->curoff
,stuff
,size
);
113 xbuf_get(marshal_state
*buf
, LPBYTE stuff
, DWORD size
) {
114 if (buf
->size
< buf
->curoff
+size
) return E_FAIL
;
115 memcpy(stuff
,buf
->base
+buf
->curoff
,size
);
121 xbuf_skip(marshal_state
*buf
, DWORD size
) {
122 if (buf
->size
< buf
->curoff
+size
) return E_FAIL
;
128 _unmarshal_interface(marshal_state
*buf
, REFIID riid
, LPUNKNOWN
*pUnk
) {
130 ULARGE_INTEGER newpos
;
131 LARGE_INTEGER seekto
;
136 TRACE("...%s...\n",debugstr_guid(riid
));
139 hres
= xbuf_get(buf
,(LPBYTE
)&xsize
,sizeof(xsize
));
141 ERR("xbuf_get failed\n");
145 if (xsize
== 0) return S_OK
;
147 hres
= CreateStreamOnHGlobal(0,TRUE
,&pStm
);
149 ERR("Stream create failed %x\n",hres
);
153 hres
= IStream_Write(pStm
,buf
->base
+buf
->curoff
,xsize
,&res
);
155 ERR("stream write %x\n",hres
);
156 IStream_Release(pStm
);
160 memset(&seekto
,0,sizeof(seekto
));
161 hres
= IStream_Seek(pStm
,seekto
,SEEK_SET
,&newpos
);
163 ERR("Failed Seek %x\n",hres
);
164 IStream_Release(pStm
);
168 hres
= CoUnmarshalInterface(pStm
,riid
,(LPVOID
*)pUnk
);
170 ERR("Unmarshalling interface %s failed with %x\n",debugstr_guid(riid
),hres
);
171 IStream_Release(pStm
);
175 IStream_Release(pStm
);
176 return xbuf_skip(buf
,xsize
);
180 _marshal_interface(marshal_state
*buf
, REFIID riid
, LPUNKNOWN pUnk
) {
181 LPBYTE tempbuf
= NULL
;
182 IStream
*pStm
= NULL
;
184 ULARGE_INTEGER newpos
;
185 LARGE_INTEGER seekto
;
191 /* this is valid, if for instance we serialize
192 * a VT_DISPATCH with NULL ptr which apparently
193 * can happen. S_OK to make sure we continue
196 WARN("pUnk is NULL\n");
198 return xbuf_add(buf
,(LPBYTE
)&xsize
,sizeof(xsize
));
203 TRACE("...%s...\n",debugstr_guid(riid
));
205 hres
= CreateStreamOnHGlobal(0,TRUE
,&pStm
);
207 ERR("Stream create failed %x\n",hres
);
211 hres
= CoMarshalInterface(pStm
,riid
,pUnk
,0,NULL
,0);
213 ERR("Marshalling interface %s failed with %x\n", debugstr_guid(riid
), hres
);
217 hres
= IStream_Stat(pStm
,&ststg
,STATFLAG_NONAME
);
219 ERR("Stream stat failed\n");
223 tempbuf
= HeapAlloc(GetProcessHeap(), 0, ststg
.cbSize
.u
.LowPart
);
224 memset(&seekto
,0,sizeof(seekto
));
225 hres
= IStream_Seek(pStm
,seekto
,SEEK_SET
,&newpos
);
227 ERR("Failed Seek %x\n",hres
);
231 hres
= IStream_Read(pStm
,tempbuf
,ststg
.cbSize
.u
.LowPart
,&res
);
233 ERR("Failed Read %x\n",hres
);
237 xsize
= ststg
.cbSize
.u
.LowPart
;
238 xbuf_add(buf
,(LPBYTE
)&xsize
,sizeof(xsize
));
239 hres
= xbuf_add(buf
,tempbuf
,ststg
.cbSize
.u
.LowPart
);
241 HeapFree(GetProcessHeap(),0,tempbuf
);
242 IStream_Release(pStm
);
248 xbuf_add(buf
,(LPBYTE
)&xsize
,sizeof(xsize
));
249 if (pStm
) IUnknown_Release(pStm
);
250 HeapFree(GetProcessHeap(), 0, tempbuf
);
254 /********************* OLE Proxy/Stub Factory ********************************/
255 static HRESULT WINAPI
256 PSFacBuf_QueryInterface(LPPSFACTORYBUFFER iface
, REFIID iid
, LPVOID
*ppv
) {
257 if (IsEqualIID(iid
,&IID_IPSFactoryBuffer
)||IsEqualIID(iid
,&IID_IUnknown
)) {
259 /* No ref counting, static class */
262 FIXME("(%s) unknown IID?\n",debugstr_guid(iid
));
263 return E_NOINTERFACE
;
266 static ULONG WINAPI
PSFacBuf_AddRef(LPPSFACTORYBUFFER iface
) { return 2; }
267 static ULONG WINAPI
PSFacBuf_Release(LPPSFACTORYBUFFER iface
) { return 1; }
270 _get_typeinfo_for_iid(REFIID riid
, ITypeInfo
**ti
) {
273 char tlguid
[200],typelibkey
[300],interfacekey
[300],ver
[100];
276 DWORD tlguidlen
, verlen
, type
;
280 sprintf( interfacekey
, "Interface\\{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}\\Typelib",
281 riid
->Data1
, riid
->Data2
, riid
->Data3
,
282 riid
->Data4
[0], riid
->Data4
[1], riid
->Data4
[2], riid
->Data4
[3],
283 riid
->Data4
[4], riid
->Data4
[5], riid
->Data4
[6], riid
->Data4
[7]
286 if (RegOpenKeyA(HKEY_CLASSES_ROOT
,interfacekey
,&ikey
)) {
287 ERR("No %s key found.\n",interfacekey
);
290 tlguidlen
= sizeof(tlguid
);
291 if (RegQueryValueExA(ikey
,NULL
,NULL
,&type
,(LPBYTE
)tlguid
,&tlguidlen
)) {
292 ERR("Getting typelib guid failed.\n");
296 verlen
= sizeof(ver
);
297 if (RegQueryValueExA(ikey
,"Version",NULL
,&type
,(LPBYTE
)ver
,&verlen
)) {
298 ERR("Could not get version value?\n");
303 sprintf(typelibkey
,"Typelib\\%s\\%s\\0\\win%u",tlguid
,ver
,(sizeof(void*) == 8) ? 64 : 32);
304 tlfnlen
= sizeof(tlfn
);
305 if (RegQueryValueA(HKEY_CLASSES_ROOT
,typelibkey
,tlfn
,&tlfnlen
)) {
306 ERR("Could not get typelib fn?\n");
309 MultiByteToWideChar(CP_ACP
, 0, tlfn
, -1, tlfnW
, sizeof(tlfnW
) / sizeof(tlfnW
[0]));
310 hres
= LoadTypeLib(tlfnW
,&tl
);
312 ERR("Failed to load typelib for %s, but it should be there.\n",debugstr_guid(riid
));
315 hres
= ITypeLib_GetTypeInfoOfGuid(tl
,riid
,ti
);
317 ERR("typelib does not contain info for %s?\n",debugstr_guid(riid
));
318 ITypeLib_Release(tl
);
321 ITypeLib_Release(tl
);
326 * Determine the number of functions including all inherited functions
327 * and well as the size of the vtbl.
328 * Note for non-dual dispinterfaces we simply return the size of IDispatch.
330 static HRESULT
num_of_funcs(ITypeInfo
*tinfo
, unsigned int *num
,
331 unsigned int *vtbl_size
)
336 UINT inherited_funcs
= 0, i
;
339 if(vtbl_size
) *vtbl_size
= 0;
341 hr
= ITypeInfo_GetTypeAttr(tinfo
, &attr
);
344 ERR("GetTypeAttr failed with %x\n", hr
);
348 if(attr
->typekind
== TKIND_DISPATCH
)
350 if(attr
->wTypeFlags
& TYPEFLAG_FDUAL
)
354 ITypeInfo_ReleaseTypeAttr(tinfo
, attr
);
355 hr
= ITypeInfo_GetRefTypeOfImplType(tinfo
, -1, &href
);
358 ERR("Unable to get interface href from dual dispinterface\n");
361 hr
= ITypeInfo_GetRefTypeInfo(tinfo
, href
, &tinfo2
);
364 ERR("Unable to get interface from dual dispinterface\n");
367 hr
= num_of_funcs(tinfo2
, num
, vtbl_size
);
368 ITypeInfo_Release(tinfo2
);
371 else /* non-dual dispinterface */
373 /* These will be the size of IDispatchVtbl */
374 *num
= attr
->cbSizeVft
/ sizeof(void *);
375 if(vtbl_size
) *vtbl_size
= attr
->cbSizeVft
;
376 ITypeInfo_ReleaseTypeAttr(tinfo
, attr
);
381 for (i
= 0; i
< attr
->cImplTypes
; i
++)
384 ITypeInfo
*pSubTypeInfo
;
387 hr
= ITypeInfo_GetRefTypeOfImplType(tinfo
, i
, &href
);
388 if (FAILED(hr
)) goto end
;
389 hr
= ITypeInfo_GetRefTypeInfo(tinfo
, href
, &pSubTypeInfo
);
390 if (FAILED(hr
)) goto end
;
392 hr
= num_of_funcs(pSubTypeInfo
, &sub_funcs
, NULL
);
393 ITypeInfo_Release(pSubTypeInfo
);
395 if(FAILED(hr
)) goto end
;
396 inherited_funcs
+= sub_funcs
;
399 *num
= inherited_funcs
+ attr
->cFuncs
;
400 if(vtbl_size
) *vtbl_size
= attr
->cbSizeVft
;
403 ITypeInfo_ReleaseTypeAttr(tinfo
, attr
);
409 #include "pshpack1.h"
411 typedef struct _TMAsmProxy
{
426 # warning You need to implement stubless proxies for your architecture
427 typedef struct _TMAsmProxy
{
431 typedef struct _TMProxyImpl
{
433 IRpcProxyBuffer IRpcProxyBuffer_iface
;
436 TMAsmProxy
*asmstubs
;
438 IRpcChannelBuffer
* chanbuf
;
440 CRITICAL_SECTION crit
;
441 IUnknown
*outerunknown
;
443 IRpcProxyBuffer
*dispatch_proxy
;
446 static inline TMProxyImpl
*impl_from_IRpcProxyBuffer( IRpcProxyBuffer
*iface
)
448 return CONTAINING_RECORD(iface
, TMProxyImpl
, IRpcProxyBuffer_iface
);
451 static HRESULT WINAPI
452 TMProxyImpl_QueryInterface(LPRPCPROXYBUFFER iface
, REFIID riid
, LPVOID
*ppv
)
455 if (IsEqualIID(riid
,&IID_IUnknown
)||IsEqualIID(riid
,&IID_IRpcProxyBuffer
)) {
457 IRpcProxyBuffer_AddRef(iface
);
460 FIXME("no interface for %s\n",debugstr_guid(riid
));
461 return E_NOINTERFACE
;
465 TMProxyImpl_AddRef(LPRPCPROXYBUFFER iface
)
467 TMProxyImpl
*This
= impl_from_IRpcProxyBuffer( iface
);
468 ULONG refCount
= InterlockedIncrement(&This
->ref
);
470 TRACE("(%p)->(ref before=%u)\n",This
, refCount
- 1);
476 TMProxyImpl_Release(LPRPCPROXYBUFFER iface
)
478 TMProxyImpl
*This
= impl_from_IRpcProxyBuffer( iface
);
479 ULONG refCount
= InterlockedDecrement(&This
->ref
);
481 TRACE("(%p)->(ref before=%u)\n",This
, refCount
+ 1);
485 if (This
->dispatch_proxy
) IRpcProxyBuffer_Release(This
->dispatch_proxy
);
486 This
->crit
.DebugInfo
->Spare
[0] = 0;
487 DeleteCriticalSection(&This
->crit
);
488 if (This
->chanbuf
) IRpcChannelBuffer_Release(This
->chanbuf
);
489 VirtualFree(This
->asmstubs
, 0, MEM_RELEASE
);
490 HeapFree(GetProcessHeap(), 0, This
->lpvtbl
);
491 ITypeInfo_Release(This
->tinfo
);
497 static HRESULT WINAPI
499 LPRPCPROXYBUFFER iface
,IRpcChannelBuffer
* pRpcChannelBuffer
)
501 TMProxyImpl
*This
= impl_from_IRpcProxyBuffer( iface
);
503 TRACE("(%p)\n", pRpcChannelBuffer
);
505 EnterCriticalSection(&This
->crit
);
507 IRpcChannelBuffer_AddRef(pRpcChannelBuffer
);
508 This
->chanbuf
= pRpcChannelBuffer
;
510 LeaveCriticalSection(&This
->crit
);
512 if (This
->dispatch_proxy
)
514 IRpcChannelBuffer
*pDelegateChannel
;
515 HRESULT hr
= TMarshalDispatchChannel_Create(pRpcChannelBuffer
, &This
->iid
, &pDelegateChannel
);
518 hr
= IRpcProxyBuffer_Connect(This
->dispatch_proxy
, pDelegateChannel
);
519 IRpcChannelBuffer_Release(pDelegateChannel
);
527 TMProxyImpl_Disconnect(LPRPCPROXYBUFFER iface
)
529 TMProxyImpl
*This
= impl_from_IRpcProxyBuffer( iface
);
533 EnterCriticalSection(&This
->crit
);
535 IRpcChannelBuffer_Release(This
->chanbuf
);
536 This
->chanbuf
= NULL
;
538 LeaveCriticalSection(&This
->crit
);
540 if (This
->dispatch_proxy
)
541 IRpcProxyBuffer_Disconnect(This
->dispatch_proxy
);
545 static const IRpcProxyBufferVtbl tmproxyvtable
= {
546 TMProxyImpl_QueryInterface
,
550 TMProxyImpl_Disconnect
553 /* how much space do we use on stack in DWORD steps. */
555 _argsize(TYPEDESC
*tdesc
, ITypeInfo
*tinfo
) {
559 return 8/sizeof(DWORD
);
561 return sizeof(double)/sizeof(DWORD
);
563 return sizeof(CY
)/sizeof(DWORD
);
565 return sizeof(DATE
)/sizeof(DWORD
);
567 return (sizeof(DECIMAL
)+3)/sizeof(DWORD
);
569 return (sizeof(VARIANT
)+3)/sizeof(DWORD
);
577 hres
= ITypeInfo_GetRefTypeInfo(tinfo
,tdesc
->u
.hreftype
,&tinfo2
);
579 return 0; /* should fail critically in serialize_param */
580 ITypeInfo_GetTypeAttr(tinfo2
,&tattr
);
581 ret
= (tattr
->cbSizeInstance
+3)/sizeof(DWORD
);
582 ITypeInfo_ReleaseTypeAttr(tinfo2
, tattr
);
583 ITypeInfo_Release(tinfo2
);
591 /* how much space do we use on the heap (in bytes) */
593 _xsize(const TYPEDESC
*td
, ITypeInfo
*tinfo
) {
600 return sizeof(VARIANT
);
603 const ARRAYDESC
*adesc
= td
->u
.lpadesc
;
605 for (i
=0;i
<adesc
->cDims
;i
++)
606 arrsize
*= adesc
->rgbounds
[i
].cElements
;
607 return arrsize
*_xsize(&adesc
->tdescElem
, tinfo
);
627 hres
= ITypeInfo_GetRefTypeInfo(tinfo
,td
->u
.hreftype
,&tinfo2
);
630 ITypeInfo_GetTypeAttr(tinfo2
,&tattr
);
631 ret
= tattr
->cbSizeInstance
;
632 ITypeInfo_ReleaseTypeAttr(tinfo2
, tattr
);
633 ITypeInfo_Release(tinfo2
);
654 TRACE("(tdesc.vt %s)\n",debugstr_vt(tdesc
->vt
));
657 if ((vartype
& 0xf000) == VT_ARRAY
)
658 vartype
= VT_SAFEARRAY
;
667 if (debugout
) TRACE_(olerelay
)("%x%x\n",arg
[0],arg
[1]);
669 hres
= xbuf_add(buf
,(LPBYTE
)arg
,8);
678 if (debugout
) TRACE_(olerelay
)("%x\n",*arg
);
680 hres
= xbuf_add(buf
,(LPBYTE
)arg
,sizeof(DWORD
));
686 if (debugout
) TRACE_(olerelay
)("%04x\n",*arg
& 0xffff);
688 hres
= xbuf_add(buf
,(LPBYTE
)arg
,sizeof(DWORD
));
693 if (debugout
) TRACE_(olerelay
)("%02x\n",*arg
& 0xff);
695 hres
= xbuf_add(buf
,(LPBYTE
)arg
,sizeof(DWORD
));
698 if (debugout
) TRACE_(olerelay
)("Vt(%s%s)(",debugstr_vt(V_VT((VARIANT
*)arg
)),debugstr_vf(V_VT((VARIANT
*)arg
)));
701 ULONG flags
= MAKELONG(MSHCTX_DIFFERENTMACHINE
, NDR_LOCAL_DATA_REPRESENTATION
);
702 ULONG size
= VARIANT_UserSize(&flags
, buf
->curoff
, (VARIANT
*)arg
);
703 xbuf_resize(buf
, size
);
704 VARIANT_UserMarshal(&flags
, buf
->base
+ buf
->curoff
, (VARIANT
*)arg
);
709 ULONG flags
= MAKELONG(MSHCTX_DIFFERENTMACHINE
, NDR_LOCAL_DATA_REPRESENTATION
);
710 VARIANT_UserFree(&flags
, (VARIANT
*)arg
);
717 TRACE_(olerelay
)("%s",relaystr((WCHAR
*)*arg
));
719 TRACE_(olerelay
)("<bstr NULL>");
723 ULONG flags
= MAKELONG(MSHCTX_DIFFERENTMACHINE
, NDR_LOCAL_DATA_REPRESENTATION
);
724 ULONG size
= BSTR_UserSize(&flags
, buf
->curoff
, (BSTR
*)arg
);
725 xbuf_resize(buf
, size
);
726 BSTR_UserMarshal(&flags
, buf
->base
+ buf
->curoff
, (BSTR
*)arg
);
731 ULONG flags
= MAKELONG(MSHCTX_DIFFERENTMACHINE
, NDR_LOCAL_DATA_REPRESENTATION
);
732 BSTR_UserFree(&flags
, (BSTR
*)arg
);
738 BOOL derefhere
= TRUE
;
740 if (tdesc
->u
.lptdesc
->vt
== VT_USERDEFINED
) {
744 hres
= ITypeInfo_GetRefTypeInfo(tinfo
,tdesc
->u
.lptdesc
->u
.hreftype
,&tinfo2
);
746 ERR("Could not get typeinfo of hreftype %x for VT_USERDEFINED.\n",tdesc
->u
.lptdesc
->u
.hreftype
);
749 ITypeInfo_GetTypeAttr(tinfo2
,&tattr
);
750 switch (tattr
->typekind
) {
752 if (tattr
->tdescAlias
.vt
== VT_USERDEFINED
)
754 DWORD href
= tattr
->tdescAlias
.u
.hreftype
;
755 ITypeInfo_ReleaseTypeAttr(tinfo
, tattr
);
756 ITypeInfo_Release(tinfo2
);
757 hres
= ITypeInfo_GetRefTypeInfo(tinfo
,href
,&tinfo2
);
759 ERR("Could not get typeinfo of hreftype %x for VT_USERDEFINED.\n",tdesc
->u
.lptdesc
->u
.hreftype
);
762 ITypeInfo_GetTypeAttr(tinfo2
,&tattr
);
763 derefhere
= (tattr
->typekind
!= TKIND_DISPATCH
&& tattr
->typekind
!= TKIND_INTERFACE
);
766 case TKIND_ENUM
: /* confirmed */
767 case TKIND_RECORD
: /* FIXME: mostly untested */
769 case TKIND_DISPATCH
: /* will be done in VT_USERDEFINED case */
770 case TKIND_INTERFACE
: /* will be done in VT_USERDEFINED case */
774 FIXME("unhandled switch cases tattr->typekind %d\n", tattr
->typekind
);
778 ITypeInfo_ReleaseTypeAttr(tinfo
, tattr
);
779 ITypeInfo_Release(tinfo2
);
782 if (debugout
) TRACE_(olerelay
)("*");
783 /* Write always, so the other side knows when it gets a NULL pointer.
785 cookie
= *arg
? 0x42424242 : 0;
786 hres
= xbuf_add(buf
,(LPBYTE
)&cookie
,sizeof(cookie
));
790 if (debugout
) TRACE_(olerelay
)("NULL");
793 hres
= serialize_param(tinfo
,writeit
,debugout
,dealloc
,tdesc
->u
.lptdesc
,(DWORD
*)*arg
,buf
);
794 if (derefhere
&& dealloc
) HeapFree(GetProcessHeap(),0,(LPVOID
)*arg
);
798 if (debugout
) TRACE_(olerelay
)("unk(0x%x)",*arg
);
800 hres
= _marshal_interface(buf
,&IID_IUnknown
,(LPUNKNOWN
)*arg
);
801 if (dealloc
&& *(IUnknown
**)arg
)
802 IUnknown_Release((LPUNKNOWN
)*arg
);
805 if (debugout
) TRACE_(olerelay
)("idisp(0x%x)",*arg
);
807 hres
= _marshal_interface(buf
,&IID_IDispatch
,(LPUNKNOWN
)*arg
);
808 if (dealloc
&& *(IUnknown
**)arg
)
809 IUnknown_Release((LPUNKNOWN
)*arg
);
812 if (debugout
) TRACE_(olerelay
)("<void>");
814 case VT_USERDEFINED
: {
818 hres
= ITypeInfo_GetRefTypeInfo(tinfo
,tdesc
->u
.hreftype
,&tinfo2
);
820 ERR("Could not get typeinfo of hreftype %x for VT_USERDEFINED.\n",tdesc
->u
.hreftype
);
823 ITypeInfo_GetTypeAttr(tinfo2
,&tattr
);
824 switch (tattr
->typekind
) {
826 case TKIND_INTERFACE
:
828 hres
=_marshal_interface(buf
,&(tattr
->guid
),(LPUNKNOWN
)arg
);
830 IUnknown_Release((LPUNKNOWN
)arg
);
834 if (debugout
) TRACE_(olerelay
)("{");
835 for (i
=0;i
<tattr
->cVars
;i
++) {
840 hres
= ITypeInfo2_GetVarDesc(tinfo2
, i
, &vdesc
);
842 ERR("Could not get vardesc of %d\n",i
);
845 elem2
= &vdesc
->elemdescVar
;
846 tdesc2
= &elem2
->tdesc
;
847 hres
= serialize_param(
853 (DWORD
*)(((LPBYTE
)arg
)+vdesc
->u
.oInst
),
856 ITypeInfo_ReleaseVarDesc(tinfo2
, vdesc
);
859 if (debugout
&& (i
<(tattr
->cVars
-1)))
860 TRACE_(olerelay
)(",");
862 if (debugout
) TRACE_(olerelay
)("}");
866 hres
= serialize_param(tinfo2
,writeit
,debugout
,dealloc
,&tattr
->tdescAlias
,arg
,buf
);
870 if (debugout
) TRACE_(olerelay
)("%x",*arg
);
872 hres
= xbuf_add(buf
,(LPBYTE
)arg
,sizeof(DWORD
));
875 FIXME("Unhandled typekind %d\n",tattr
->typekind
);
879 ITypeInfo_ReleaseTypeAttr(tinfo2
, tattr
);
880 ITypeInfo_Release(tinfo2
);
884 ARRAYDESC
*adesc
= tdesc
->u
.lpadesc
;
887 if (debugout
) TRACE_(olerelay
)("carr");
888 for (i
=0;i
<adesc
->cDims
;i
++) {
889 if (debugout
) TRACE_(olerelay
)("[%d]",adesc
->rgbounds
[i
].cElements
);
890 arrsize
*= adesc
->rgbounds
[i
].cElements
;
892 if (debugout
) TRACE_(olerelay
)("(vt %s)",debugstr_vt(adesc
->tdescElem
.vt
));
893 if (debugout
) TRACE_(olerelay
)("[");
894 for (i
=0;i
<arrsize
;i
++) {
895 hres
= serialize_param(tinfo
, writeit
, debugout
, dealloc
, &adesc
->tdescElem
, (DWORD
*)((LPBYTE
)(*arg
)+i
*_xsize(&adesc
->tdescElem
, tinfo
)), buf
);
898 if (debugout
&& (i
<arrsize
-1)) TRACE_(olerelay
)(",");
900 if (debugout
) TRACE_(olerelay
)("]");
902 HeapFree(GetProcessHeap(), 0, *(void **)arg
);
908 ULONG flags
= MAKELONG(MSHCTX_DIFFERENTMACHINE
, NDR_LOCAL_DATA_REPRESENTATION
);
909 ULONG size
= LPSAFEARRAY_UserSize(&flags
, buf
->curoff
, (LPSAFEARRAY
*)arg
);
910 xbuf_resize(buf
, size
);
911 LPSAFEARRAY_UserMarshal(&flags
, buf
->base
+ buf
->curoff
, (LPSAFEARRAY
*)arg
);
916 ULONG flags
= MAKELONG(MSHCTX_DIFFERENTMACHINE
, NDR_LOCAL_DATA_REPRESENTATION
);
917 LPSAFEARRAY_UserFree(&flags
, (LPSAFEARRAY
*)arg
);
922 ERR("Unhandled marshal type %d.\n",tdesc
->vt
);
940 TRACE("vt %s at %p\n",debugstr_vt(tdesc
->vt
),arg
);
943 if ((vartype
& 0xf000) == VT_ARRAY
)
944 vartype
= VT_SAFEARRAY
;
951 ULONG flags
= MAKELONG(MSHCTX_DIFFERENTMACHINE
, NDR_LOCAL_DATA_REPRESENTATION
);
952 unsigned char *buffer
;
953 buffer
= VARIANT_UserUnmarshal(&flags
, buf
->base
+ buf
->curoff
, (VARIANT
*)arg
);
954 buf
->curoff
= buffer
- buf
->base
;
964 hres
= xbuf_get(buf
,(LPBYTE
)arg
,8);
965 if (hres
) ERR("Failed to read integer 8 byte\n");
967 if (debugout
) TRACE_(olerelay
)("%x%x",arg
[0],arg
[1]);
976 hres
= xbuf_get(buf
,(LPBYTE
)arg
,sizeof(DWORD
));
977 if (hres
) ERR("Failed to read integer 4 byte\n");
979 if (debugout
) TRACE_(olerelay
)("%x",*arg
);
986 hres
= xbuf_get(buf
,(LPBYTE
)&x
,sizeof(DWORD
));
987 if (hres
) ERR("Failed to read integer 4 byte\n");
990 if (debugout
) TRACE_(olerelay
)("%04x",*arg
& 0xffff);
996 hres
= xbuf_get(buf
,(LPBYTE
)&x
,sizeof(DWORD
));
997 if (hres
) ERR("Failed to read integer 4 byte\n");
1000 if (debugout
) TRACE_(olerelay
)("%02x",*arg
& 0xff);
1005 ULONG flags
= MAKELONG(MSHCTX_DIFFERENTMACHINE
, NDR_LOCAL_DATA_REPRESENTATION
);
1006 unsigned char *buffer
;
1007 buffer
= BSTR_UserUnmarshal(&flags
, buf
->base
+ buf
->curoff
, (BSTR
*)arg
);
1008 buf
->curoff
= buffer
- buf
->base
;
1009 if (debugout
) TRACE_(olerelay
)("%s",debugstr_w(*(BSTR
*)arg
));
1015 BOOL derefhere
= TRUE
;
1017 if (tdesc
->u
.lptdesc
->vt
== VT_USERDEFINED
) {
1021 hres
= ITypeInfo_GetRefTypeInfo(tinfo
,tdesc
->u
.lptdesc
->u
.hreftype
,&tinfo2
);
1023 ERR("Could not get typeinfo of hreftype %x for VT_USERDEFINED.\n",tdesc
->u
.lptdesc
->u
.hreftype
);
1026 ITypeInfo_GetTypeAttr(tinfo2
,&tattr
);
1027 switch (tattr
->typekind
) {
1029 if (tattr
->tdescAlias
.vt
== VT_USERDEFINED
)
1031 DWORD href
= tattr
->tdescAlias
.u
.hreftype
;
1032 ITypeInfo_ReleaseTypeAttr(tinfo
, tattr
);
1033 ITypeInfo_Release(tinfo2
);
1034 hres
= ITypeInfo_GetRefTypeInfo(tinfo
,href
,&tinfo2
);
1036 ERR("Could not get typeinfo of hreftype %x for VT_USERDEFINED.\n",tdesc
->u
.lptdesc
->u
.hreftype
);
1039 ITypeInfo_GetTypeAttr(tinfo2
,&tattr
);
1040 derefhere
= (tattr
->typekind
!= TKIND_DISPATCH
&& tattr
->typekind
!= TKIND_INTERFACE
);
1043 case TKIND_ENUM
: /* confirmed */
1044 case TKIND_RECORD
: /* FIXME: mostly untested */
1046 case TKIND_DISPATCH
: /* will be done in VT_USERDEFINED case */
1047 case TKIND_INTERFACE
: /* will be done in VT_USERDEFINED case */
1051 FIXME("unhandled switch cases tattr->typekind %d\n", tattr
->typekind
);
1055 ITypeInfo_ReleaseTypeAttr(tinfo2
, tattr
);
1056 ITypeInfo_Release(tinfo2
);
1058 /* read it in all cases, we need to know if we have
1059 * NULL pointer or not.
1061 hres
= xbuf_get(buf
,(LPBYTE
)&cookie
,sizeof(cookie
));
1063 ERR("Failed to load pointer cookie.\n");
1066 if (cookie
!= 0x42424242) {
1067 /* we read a NULL ptr from the remote side */
1068 if (debugout
) TRACE_(olerelay
)("NULL");
1072 if (debugout
) TRACE_(olerelay
)("*");
1074 /* Allocate space for the referenced struct */
1076 *arg
=(DWORD
)HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,_xsize(tdesc
->u
.lptdesc
, tinfo
));
1079 return deserialize_param(tinfo
, readit
, debugout
, alloc
, tdesc
->u
.lptdesc
, (LPDWORD
)*arg
, buf
);
1081 return deserialize_param(tinfo
, readit
, debugout
, alloc
, tdesc
->u
.lptdesc
, arg
, buf
);
1084 /* FIXME: UNKNOWN is unknown ..., but allocate 4 byte for it */
1086 *arg
=(DWORD
)HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,sizeof(DWORD
));
1089 hres
= _unmarshal_interface(buf
,&IID_IUnknown
,(LPUNKNOWN
*)arg
);
1091 TRACE_(olerelay
)("unk(%p)",arg
);
1096 hres
= _unmarshal_interface(buf
,&IID_IDispatch
,(LPUNKNOWN
*)arg
);
1098 TRACE_(olerelay
)("idisp(%p)",arg
);
1101 if (debugout
) TRACE_(olerelay
)("<void>");
1103 case VT_USERDEFINED
: {
1107 hres
= ITypeInfo_GetRefTypeInfo(tinfo
,tdesc
->u
.hreftype
,&tinfo2
);
1109 ERR("Could not get typeinfo of hreftype %x for VT_USERDEFINED.\n",tdesc
->u
.hreftype
);
1112 hres
= ITypeInfo_GetTypeAttr(tinfo2
,&tattr
);
1114 ERR("Could not get typeattr in VT_USERDEFINED.\n");
1116 switch (tattr
->typekind
) {
1117 case TKIND_DISPATCH
:
1118 case TKIND_INTERFACE
:
1120 hres
= _unmarshal_interface(buf
,&(tattr
->guid
),(LPUNKNOWN
*)arg
);
1122 case TKIND_RECORD
: {
1125 if (debugout
) TRACE_(olerelay
)("{");
1126 for (i
=0;i
<tattr
->cVars
;i
++) {
1129 hres
= ITypeInfo2_GetVarDesc(tinfo2
, i
, &vdesc
);
1131 ERR("Could not get vardesc of %d\n",i
);
1132 ITypeInfo_ReleaseTypeAttr(tinfo2
, tattr
);
1133 ITypeInfo_Release(tinfo2
);
1136 hres
= deserialize_param(
1141 &vdesc
->elemdescVar
.tdesc
,
1142 (DWORD
*)(((LPBYTE
)arg
)+vdesc
->u
.oInst
),
1145 ITypeInfo2_ReleaseVarDesc(tinfo2
, vdesc
);
1146 if (debugout
&& (i
<tattr
->cVars
-1)) TRACE_(olerelay
)(",");
1148 if (debugout
) TRACE_(olerelay
)("}");
1152 hres
= deserialize_param(tinfo2
,readit
,debugout
,alloc
,&tattr
->tdescAlias
,arg
,buf
);
1156 hres
= xbuf_get(buf
,(LPBYTE
)arg
,sizeof(DWORD
));
1157 if (hres
) ERR("Failed to read enum (4 byte)\n");
1159 if (debugout
) TRACE_(olerelay
)("%x",*arg
);
1162 ERR("Unhandled typekind %d\n",tattr
->typekind
);
1166 ITypeInfo_ReleaseTypeAttr(tinfo2
, tattr
);
1169 ERR("failed to stuballoc in TKIND_RECORD.\n");
1170 ITypeInfo_Release(tinfo2
);
1174 /* arg is pointing to the start of the array. */
1175 ARRAYDESC
*adesc
= tdesc
->u
.lpadesc
;
1178 if (adesc
->cDims
> 1) FIXME("cDims > 1 in VT_CARRAY. Does it work?\n");
1179 for (i
=0;i
<adesc
->cDims
;i
++)
1180 arrsize
*= adesc
->rgbounds
[i
].cElements
;
1181 *arg
=(DWORD
)HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,_xsize(tdesc
->u
.lptdesc
, tinfo
) * arrsize
);
1182 for (i
=0;i
<arrsize
;i
++)
1189 (DWORD
*)((LPBYTE
)(*arg
)+i
*_xsize(&adesc
->tdescElem
, tinfo
)),
1194 case VT_SAFEARRAY
: {
1197 ULONG flags
= MAKELONG(MSHCTX_DIFFERENTMACHINE
, NDR_LOCAL_DATA_REPRESENTATION
);
1198 unsigned char *buffer
;
1199 buffer
= LPSAFEARRAY_UserUnmarshal(&flags
, buf
->base
+ buf
->curoff
, (LPSAFEARRAY
*)arg
);
1200 buf
->curoff
= buffer
- buf
->base
;
1205 ERR("No handler for VT type %d!\n",tdesc
->vt
);
1211 /* Retrieves a function's funcdesc, searching back into inherited interfaces. */
1212 static HRESULT
get_funcdesc(ITypeInfo
*tinfo
, int iMethod
, ITypeInfo
**tactual
, const FUNCDESC
**fdesc
,
1213 BSTR
*iname
, BSTR
*fname
, UINT
*num
)
1217 UINT inherited_funcs
= 0;
1220 if (fname
) *fname
= NULL
;
1221 if (iname
) *iname
= NULL
;
1225 hr
= ITypeInfo_GetTypeAttr(tinfo
, &attr
);
1228 ERR("GetTypeAttr failed with %x\n",hr
);
1232 if(attr
->typekind
== TKIND_DISPATCH
)
1234 if(attr
->wTypeFlags
& TYPEFLAG_FDUAL
)
1239 hr
= ITypeInfo_GetRefTypeOfImplType(tinfo
, -1, &href
);
1242 ERR("Cannot get interface href from dual dispinterface\n");
1243 ITypeInfo_ReleaseTypeAttr(tinfo
, attr
);
1246 hr
= ITypeInfo_GetRefTypeInfo(tinfo
, href
, &tinfo2
);
1249 ERR("Cannot get interface from dual dispinterface\n");
1250 ITypeInfo_ReleaseTypeAttr(tinfo
, attr
);
1253 hr
= get_funcdesc(tinfo2
, iMethod
, tactual
, fdesc
, iname
, fname
, num
);
1254 ITypeInfo_Release(tinfo2
);
1255 ITypeInfo_ReleaseTypeAttr(tinfo
, attr
);
1258 ERR("Shouldn't be called with a non-dual dispinterface\n");
1262 impl_types
= attr
->cImplTypes
;
1263 ITypeInfo_ReleaseTypeAttr(tinfo
, attr
);
1265 for (i
= 0; i
< impl_types
; i
++)
1268 ITypeInfo
*pSubTypeInfo
;
1271 hr
= ITypeInfo_GetRefTypeOfImplType(tinfo
, i
, &href
);
1272 if (FAILED(hr
)) return hr
;
1273 hr
= ITypeInfo_GetRefTypeInfo(tinfo
, href
, &pSubTypeInfo
);
1274 if (FAILED(hr
)) return hr
;
1276 hr
= get_funcdesc(pSubTypeInfo
, iMethod
, tactual
, fdesc
, iname
, fname
, &sub_funcs
);
1277 inherited_funcs
+= sub_funcs
;
1278 ITypeInfo_Release(pSubTypeInfo
);
1279 if(SUCCEEDED(hr
)) return hr
;
1281 if(iMethod
< inherited_funcs
)
1283 ERR("shouldn't be here\n");
1284 return E_INVALIDARG
;
1287 for(i
= inherited_funcs
; i
<= iMethod
; i
++)
1289 hr
= ITypeInfoImpl_GetInternalFuncDesc(tinfo
, i
- inherited_funcs
, fdesc
);
1297 /* found it. We don't care about num so zero it */
1300 ITypeInfo_AddRef(*tactual
);
1301 if (fname
) ITypeInfo_GetDocumentation(tinfo
,(*fdesc
)->memid
,fname
,NULL
,NULL
,NULL
);
1302 if (iname
) ITypeInfo_GetDocumentation(tinfo
,-1,iname
,NULL
,NULL
,NULL
);
1306 static inline BOOL
is_in_elem(const ELEMDESC
*elem
)
1308 return (elem
->u
.paramdesc
.wParamFlags
& PARAMFLAG_FIN
|| !elem
->u
.paramdesc
.wParamFlags
);
1311 static inline BOOL
is_out_elem(const ELEMDESC
*elem
)
1313 return (elem
->u
.paramdesc
.wParamFlags
& PARAMFLAG_FOUT
|| !elem
->u
.paramdesc
.wParamFlags
);
1317 xCall(LPVOID retptr
, int method
, TMProxyImpl
*tpinfo
/*, args */)
1319 DWORD
*args
= ((DWORD
*)&tpinfo
)+1, *xargs
;
1320 const FUNCDESC
*fdesc
;
1322 int i
, relaydeb
= TRACE_ON(olerelay
);
1329 DWORD remoteresult
= 0;
1331 IRpcChannelBuffer
*chanbuf
;
1333 EnterCriticalSection(&tpinfo
->crit
);
1335 hres
= get_funcdesc(tpinfo
->tinfo
,method
,&tinfo
,&fdesc
,&iname
,&fname
,NULL
);
1337 ERR("Did not find typeinfo/funcdesc entry for method %d!\n",method
);
1338 LeaveCriticalSection(&tpinfo
->crit
);
1342 if (!tpinfo
->chanbuf
)
1344 WARN("Tried to use disconnected proxy\n");
1345 ITypeInfo_Release(tinfo
);
1346 LeaveCriticalSection(&tpinfo
->crit
);
1347 return RPC_E_DISCONNECTED
;
1349 chanbuf
= tpinfo
->chanbuf
;
1350 IRpcChannelBuffer_AddRef(chanbuf
);
1352 LeaveCriticalSection(&tpinfo
->crit
);
1355 TRACE_(olerelay
)("->");
1357 TRACE_(olerelay
)("%s:",relaystr(iname
));
1359 TRACE_(olerelay
)("%s(%d)",relaystr(fname
),method
);
1361 TRACE_(olerelay
)("%d",method
);
1362 TRACE_(olerelay
)("(");
1365 SysFreeString(iname
);
1366 SysFreeString(fname
);
1368 memset(&buf
,0,sizeof(buf
));
1370 /* normal typelib driven serializing */
1372 /* Need them for hack below */
1373 memset(names
,0,sizeof(names
));
1374 if (ITypeInfo_GetNames(tinfo
,fdesc
->memid
,names
,sizeof(names
)/sizeof(names
[0]),&nrofnames
))
1376 if (nrofnames
> sizeof(names
)/sizeof(names
[0]))
1377 ERR("Need more names!\n");
1380 for (i
=0;i
<fdesc
->cParams
;i
++) {
1381 ELEMDESC
*elem
= fdesc
->lprgelemdescParam
+i
;
1383 if (i
) TRACE_(olerelay
)(",");
1384 if (i
+1<nrofnames
&& names
[i
+1])
1385 TRACE_(olerelay
)("%s=",relaystr(names
[i
+1]));
1387 /* No need to marshal other data than FIN and any VT_PTR. */
1388 if (!is_in_elem(elem
) && (elem
->tdesc
.vt
!= VT_PTR
)) {
1389 xargs
+=_argsize(&elem
->tdesc
, tinfo
);
1390 if (relaydeb
) TRACE_(olerelay
)("[out]");
1393 hres
= serialize_param(
1404 ERR("Failed to serialize param, hres %x\n",hres
);
1407 xargs
+=_argsize(&elem
->tdesc
, tinfo
);
1409 if (relaydeb
) TRACE_(olerelay
)(")");
1411 memset(&msg
,0,sizeof(msg
));
1412 msg
.cbBuffer
= buf
.curoff
;
1413 msg
.iMethod
= method
;
1414 hres
= IRpcChannelBuffer_GetBuffer(chanbuf
,&msg
,&(tpinfo
->iid
));
1416 ERR("RpcChannelBuffer GetBuffer failed, %x\n",hres
);
1419 memcpy(msg
.Buffer
,buf
.base
,buf
.curoff
);
1420 if (relaydeb
) TRACE_(olerelay
)("\n");
1421 hres
= IRpcChannelBuffer_SendReceive(chanbuf
,&msg
,&status
);
1423 ERR("RpcChannelBuffer SendReceive failed, %x\n",hres
);
1427 if (relaydeb
) TRACE_(olerelay
)(" status = %08x (",status
);
1429 buf
.base
= HeapReAlloc(GetProcessHeap(),0,buf
.base
,msg
.cbBuffer
);
1431 buf
.base
= HeapAlloc(GetProcessHeap(),0,msg
.cbBuffer
);
1432 buf
.size
= msg
.cbBuffer
;
1433 memcpy(buf
.base
,msg
.Buffer
,buf
.size
);
1436 /* generic deserializer using typelib description */
1439 for (i
=0;i
<fdesc
->cParams
;i
++) {
1440 ELEMDESC
*elem
= fdesc
->lprgelemdescParam
+i
;
1443 if (i
) TRACE_(olerelay
)(",");
1444 if (i
+1<nrofnames
&& names
[i
+1]) TRACE_(olerelay
)("%s=",relaystr(names
[i
+1]));
1446 /* No need to marshal other data than FOUT and any VT_PTR */
1447 if (!is_out_elem(elem
) && (elem
->tdesc
.vt
!= VT_PTR
)) {
1448 xargs
+= _argsize(&elem
->tdesc
, tinfo
);
1449 if (relaydeb
) TRACE_(olerelay
)("[in]");
1452 hres
= deserialize_param(
1462 ERR("Failed to unmarshall param, hres %x\n",hres
);
1466 xargs
+= _argsize(&elem
->tdesc
, tinfo
);
1469 hres
= xbuf_get(&buf
, (LPBYTE
)&remoteresult
, sizeof(DWORD
));
1472 if (relaydeb
) TRACE_(olerelay
)(") = %08x\n", remoteresult
);
1474 hres
= remoteresult
;
1477 IRpcChannelBuffer_FreeBuffer(chanbuf
,&msg
);
1478 for (i
= 0; i
< nrofnames
; i
++)
1479 SysFreeString(names
[i
]);
1480 HeapFree(GetProcessHeap(),0,buf
.base
);
1481 IRpcChannelBuffer_Release(chanbuf
);
1482 ITypeInfo_Release(tinfo
);
1483 TRACE("-- 0x%08x\n", hres
);
1487 static HRESULT WINAPI
ProxyIUnknown_QueryInterface(IUnknown
*iface
, REFIID riid
, void **ppv
)
1489 TMProxyImpl
*proxy
= (TMProxyImpl
*)iface
;
1491 TRACE("(%s, %p)\n", debugstr_guid(riid
), ppv
);
1493 if (proxy
->outerunknown
)
1494 return IUnknown_QueryInterface(proxy
->outerunknown
, riid
, ppv
);
1496 FIXME("No interface\n");
1497 return E_NOINTERFACE
;
1500 static ULONG WINAPI
ProxyIUnknown_AddRef(IUnknown
*iface
)
1502 TMProxyImpl
*proxy
= (TMProxyImpl
*)iface
;
1506 if (proxy
->outerunknown
)
1507 return IUnknown_AddRef(proxy
->outerunknown
);
1509 return 2; /* FIXME */
1512 static ULONG WINAPI
ProxyIUnknown_Release(IUnknown
*iface
)
1514 TMProxyImpl
*proxy
= (TMProxyImpl
*)iface
;
1518 if (proxy
->outerunknown
)
1519 return IUnknown_Release(proxy
->outerunknown
);
1521 return 1; /* FIXME */
1524 static HRESULT WINAPI
ProxyIDispatch_GetTypeInfoCount(LPDISPATCH iface
, UINT
* pctinfo
)
1526 TMProxyImpl
*This
= (TMProxyImpl
*)iface
;
1528 TRACE("(%p)\n", pctinfo
);
1530 return IDispatch_GetTypeInfoCount(This
->dispatch
, pctinfo
);
1533 static HRESULT WINAPI
ProxyIDispatch_GetTypeInfo(LPDISPATCH iface
, UINT iTInfo
, LCID lcid
, ITypeInfo
** ppTInfo
)
1535 TMProxyImpl
*This
= (TMProxyImpl
*)iface
;
1537 TRACE("(%d, %x, %p)\n", iTInfo
, lcid
, ppTInfo
);
1539 return IDispatch_GetTypeInfo(This
->dispatch
, iTInfo
, lcid
, ppTInfo
);
1542 static HRESULT WINAPI
ProxyIDispatch_GetIDsOfNames(LPDISPATCH iface
, REFIID riid
, LPOLESTR
* rgszNames
, UINT cNames
, LCID lcid
, DISPID
* rgDispId
)
1544 TMProxyImpl
*This
= (TMProxyImpl
*)iface
;
1546 TRACE("(%s, %p, %d, 0x%x, %p)\n", debugstr_guid(riid
), rgszNames
, cNames
, lcid
, rgDispId
);
1548 return IDispatch_GetIDsOfNames(This
->dispatch
, riid
, rgszNames
,
1549 cNames
, lcid
, rgDispId
);
1552 static HRESULT WINAPI
ProxyIDispatch_Invoke(LPDISPATCH iface
, DISPID dispIdMember
, REFIID riid
, LCID lcid
,
1553 WORD wFlags
, DISPPARAMS
* pDispParams
, VARIANT
* pVarResult
,
1554 EXCEPINFO
* pExcepInfo
, UINT
* puArgErr
)
1556 TMProxyImpl
*This
= (TMProxyImpl
*)iface
;
1558 TRACE("(%d, %s, 0x%x, 0x%x, %p, %p, %p, %p)\n", dispIdMember
,
1559 debugstr_guid(riid
), lcid
, wFlags
, pDispParams
, pVarResult
,
1560 pExcepInfo
, puArgErr
);
1562 return IDispatch_Invoke(This
->dispatch
, dispIdMember
, riid
, lcid
,
1563 wFlags
, pDispParams
, pVarResult
, pExcepInfo
,
1569 IRpcChannelBuffer IRpcChannelBuffer_iface
;
1571 /* the IDispatch-derived interface we are handling */
1573 IRpcChannelBuffer
*pDelegateChannel
;
1574 } TMarshalDispatchChannel
;
1576 static inline TMarshalDispatchChannel
*impl_from_IRpcChannelBuffer(IRpcChannelBuffer
*iface
)
1578 return CONTAINING_RECORD(iface
, TMarshalDispatchChannel
, IRpcChannelBuffer_iface
);
1581 static HRESULT WINAPI
TMarshalDispatchChannel_QueryInterface(LPRPCCHANNELBUFFER iface
, REFIID riid
, LPVOID
*ppv
)
1584 if (IsEqualIID(riid
,&IID_IRpcChannelBuffer
) || IsEqualIID(riid
,&IID_IUnknown
))
1587 IUnknown_AddRef(iface
);
1590 return E_NOINTERFACE
;
1593 static ULONG WINAPI
TMarshalDispatchChannel_AddRef(LPRPCCHANNELBUFFER iface
)
1595 TMarshalDispatchChannel
*This
= impl_from_IRpcChannelBuffer(iface
);
1596 return InterlockedIncrement(&This
->refs
);
1599 static ULONG WINAPI
TMarshalDispatchChannel_Release(LPRPCCHANNELBUFFER iface
)
1601 TMarshalDispatchChannel
*This
= impl_from_IRpcChannelBuffer(iface
);
1604 ref
= InterlockedDecrement(&This
->refs
);
1608 IRpcChannelBuffer_Release(This
->pDelegateChannel
);
1609 HeapFree(GetProcessHeap(), 0, This
);
1613 static HRESULT WINAPI
TMarshalDispatchChannel_GetBuffer(LPRPCCHANNELBUFFER iface
, RPCOLEMESSAGE
* olemsg
, REFIID riid
)
1615 TMarshalDispatchChannel
*This
= impl_from_IRpcChannelBuffer(iface
);
1616 TRACE("(%p, %s)\n", olemsg
, debugstr_guid(riid
));
1617 /* Note: we are pretending to invoke a method on the interface identified
1618 * by tmarshal_iid so that we can re-use the IDispatch proxy/stub code
1619 * without the RPC runtime getting confused by not exporting an IDispatch interface */
1620 return IRpcChannelBuffer_GetBuffer(This
->pDelegateChannel
, olemsg
, &This
->tmarshal_iid
);
1623 static HRESULT WINAPI
TMarshalDispatchChannel_SendReceive(LPRPCCHANNELBUFFER iface
, RPCOLEMESSAGE
*olemsg
, ULONG
*pstatus
)
1625 TMarshalDispatchChannel
*This
= impl_from_IRpcChannelBuffer(iface
);
1626 TRACE("(%p, %p)\n", olemsg
, pstatus
);
1627 return IRpcChannelBuffer_SendReceive(This
->pDelegateChannel
, olemsg
, pstatus
);
1630 static HRESULT WINAPI
TMarshalDispatchChannel_FreeBuffer(LPRPCCHANNELBUFFER iface
, RPCOLEMESSAGE
* olemsg
)
1632 TMarshalDispatchChannel
*This
= impl_from_IRpcChannelBuffer(iface
);
1633 TRACE("(%p)\n", olemsg
);
1634 return IRpcChannelBuffer_FreeBuffer(This
->pDelegateChannel
, olemsg
);
1637 static HRESULT WINAPI
TMarshalDispatchChannel_GetDestCtx(LPRPCCHANNELBUFFER iface
, DWORD
* pdwDestContext
, void** ppvDestContext
)
1639 TMarshalDispatchChannel
*This
= impl_from_IRpcChannelBuffer(iface
);
1640 TRACE("(%p,%p)\n", pdwDestContext
, ppvDestContext
);
1641 return IRpcChannelBuffer_GetDestCtx(This
->pDelegateChannel
, pdwDestContext
, ppvDestContext
);
1644 static HRESULT WINAPI
TMarshalDispatchChannel_IsConnected(LPRPCCHANNELBUFFER iface
)
1646 TMarshalDispatchChannel
*This
= impl_from_IRpcChannelBuffer(iface
);
1648 return IRpcChannelBuffer_IsConnected(This
->pDelegateChannel
);
1651 static const IRpcChannelBufferVtbl TMarshalDispatchChannelVtbl
=
1653 TMarshalDispatchChannel_QueryInterface
,
1654 TMarshalDispatchChannel_AddRef
,
1655 TMarshalDispatchChannel_Release
,
1656 TMarshalDispatchChannel_GetBuffer
,
1657 TMarshalDispatchChannel_SendReceive
,
1658 TMarshalDispatchChannel_FreeBuffer
,
1659 TMarshalDispatchChannel_GetDestCtx
,
1660 TMarshalDispatchChannel_IsConnected
1663 static HRESULT
TMarshalDispatchChannel_Create(
1664 IRpcChannelBuffer
*pDelegateChannel
, REFIID tmarshal_riid
,
1665 IRpcChannelBuffer
**ppChannel
)
1667 TMarshalDispatchChannel
*This
= HeapAlloc(GetProcessHeap(), 0, sizeof(*This
));
1669 return E_OUTOFMEMORY
;
1671 This
->IRpcChannelBuffer_iface
.lpVtbl
= &TMarshalDispatchChannelVtbl
;
1673 IRpcChannelBuffer_AddRef(pDelegateChannel
);
1674 This
->pDelegateChannel
= pDelegateChannel
;
1675 This
->tmarshal_iid
= *tmarshal_riid
;
1677 *ppChannel
= &This
->IRpcChannelBuffer_iface
;
1682 static inline HRESULT
get_facbuf_for_iid(REFIID riid
, IPSFactoryBuffer
**facbuf
)
1687 if ((hr
= CoGetPSClsid(riid
, &clsid
)))
1689 return CoGetClassObject(&clsid
, CLSCTX_INPROC_SERVER
, NULL
,
1690 &IID_IPSFactoryBuffer
, (LPVOID
*)facbuf
);
1693 static HRESULT
init_proxy_entry_point(TMProxyImpl
*proxy
, unsigned int num
)
1696 /* nrofargs without This */
1699 TMAsmProxy
*xasm
= proxy
->asmstubs
+ num
;
1701 const FUNCDESC
*fdesc
;
1703 hres
= get_funcdesc(proxy
->tinfo
, num
, &tinfo2
, &fdesc
, NULL
, NULL
, NULL
);
1705 ERR("GetFuncDesc %x should not fail here.\n",hres
);
1708 ITypeInfo_Release(tinfo2
);
1709 /* some args take more than 4 byte on the stack */
1711 for (j
=0;j
<fdesc
->cParams
;j
++)
1712 nrofargs
+= _argsize(&fdesc
->lprgelemdescParam
[j
].tdesc
, proxy
->tinfo
);
1715 if (fdesc
->callconv
!= CC_STDCALL
) {
1716 ERR("calling convention is not stdcall????\n");
1719 /* popl %eax - return ptr
1726 * arg3 arg2 arg1 <method> <returnptr>
1728 xasm
->popleax
= 0x58;
1729 xasm
->pushlval
= 0x68;
1731 xasm
->pushleax
= 0x50;
1732 xasm
->lcall
= 0xe8; /* relative jump */
1733 xasm
->xcall
= (DWORD
)xCall
;
1734 xasm
->xcall
-= (DWORD
)&(xasm
->lret
);
1736 xasm
->bytestopop
= (nrofargs
+2)*4; /* pop args, This, iMethod */
1738 proxy
->lpvtbl
[fdesc
->oVft
/ sizeof(void *)] = xasm
;
1740 FIXME("not implemented on non i386\n");
1746 static HRESULT WINAPI
1747 PSFacBuf_CreateProxy(
1748 LPPSFACTORYBUFFER iface
, IUnknown
* pUnkOuter
, REFIID riid
,
1749 IRpcProxyBuffer
**ppProxy
, LPVOID
*ppv
)
1753 unsigned int i
, nroffuncs
, vtbl_size
;
1756 BOOL defer_to_dispatch
= FALSE
;
1758 TRACE("(...%s...)\n",debugstr_guid(riid
));
1759 hres
= _get_typeinfo_for_iid(riid
,&tinfo
);
1761 ERR("No typeinfo for %s?\n",debugstr_guid(riid
));
1765 hres
= num_of_funcs(tinfo
, &nroffuncs
, &vtbl_size
);
1766 TRACE("Got %d funcs, vtbl size %d\n", nroffuncs
, vtbl_size
);
1769 ERR("Cannot get number of functions for typeinfo %s\n",debugstr_guid(riid
));
1770 ITypeInfo_Release(tinfo
);
1774 proxy
= CoTaskMemAlloc(sizeof(TMProxyImpl
));
1775 if (!proxy
) return E_OUTOFMEMORY
;
1777 assert(sizeof(TMAsmProxy
) == 16);
1779 proxy
->dispatch
= NULL
;
1780 proxy
->dispatch_proxy
= NULL
;
1781 proxy
->outerunknown
= pUnkOuter
;
1782 proxy
->asmstubs
= VirtualAlloc(NULL
, sizeof(TMAsmProxy
) * nroffuncs
, MEM_COMMIT
, PAGE_EXECUTE_READWRITE
);
1783 if (!proxy
->asmstubs
) {
1784 ERR("Could not commit pages for proxy thunks\n");
1785 CoTaskMemFree(proxy
);
1786 return E_OUTOFMEMORY
;
1788 proxy
->IRpcProxyBuffer_iface
.lpVtbl
= &tmproxyvtable
;
1789 /* one reference for the proxy */
1791 proxy
->tinfo
= tinfo
;
1795 InitializeCriticalSection(&proxy
->crit
);
1796 proxy
->crit
.DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": TMProxyImpl.crit");
1798 proxy
->lpvtbl
= HeapAlloc(GetProcessHeap(), 0, vtbl_size
);
1800 /* if we derive from IDispatch then defer to its proxy for its methods */
1801 hres
= ITypeInfo_GetTypeAttr(tinfo
, &typeattr
);
1804 if (typeattr
->wTypeFlags
& TYPEFLAG_FDISPATCHABLE
)
1806 IPSFactoryBuffer
*factory_buffer
;
1807 hres
= get_facbuf_for_iid(&IID_IDispatch
, &factory_buffer
);
1810 hres
= IPSFactoryBuffer_CreateProxy(factory_buffer
, NULL
,
1811 &IID_IDispatch
, &proxy
->dispatch_proxy
,
1812 (void **)&proxy
->dispatch
);
1813 IPSFactoryBuffer_Release(factory_buffer
);
1815 if ((hres
== S_OK
) && (nroffuncs
< 7))
1817 ERR("nroffuncs calculated incorrectly (%d)\n", nroffuncs
);
1818 hres
= E_UNEXPECTED
;
1822 defer_to_dispatch
= TRUE
;
1825 ITypeInfo_ReleaseTypeAttr(tinfo
, typeattr
);
1828 for (i
=0;i
<nroffuncs
;i
++) {
1831 proxy
->lpvtbl
[i
] = ProxyIUnknown_QueryInterface
;
1834 proxy
->lpvtbl
[i
] = ProxyIUnknown_AddRef
;
1837 proxy
->lpvtbl
[i
] = ProxyIUnknown_Release
;
1840 if(!defer_to_dispatch
)
1842 hres
= init_proxy_entry_point(proxy
, i
);
1843 if(FAILED(hres
)) return hres
;
1845 else proxy
->lpvtbl
[3] = ProxyIDispatch_GetTypeInfoCount
;
1848 if(!defer_to_dispatch
)
1850 hres
= init_proxy_entry_point(proxy
, i
);
1851 if(FAILED(hres
)) return hres
;
1853 else proxy
->lpvtbl
[4] = ProxyIDispatch_GetTypeInfo
;
1856 if(!defer_to_dispatch
)
1858 hres
= init_proxy_entry_point(proxy
, i
);
1859 if(FAILED(hres
)) return hres
;
1861 else proxy
->lpvtbl
[5] = ProxyIDispatch_GetIDsOfNames
;
1864 if(!defer_to_dispatch
)
1866 hres
= init_proxy_entry_point(proxy
, i
);
1867 if(FAILED(hres
)) return hres
;
1869 else proxy
->lpvtbl
[6] = ProxyIDispatch_Invoke
;
1872 hres
= init_proxy_entry_point(proxy
, i
);
1873 if(FAILED(hres
)) return hres
;
1880 *ppProxy
= &proxy
->IRpcProxyBuffer_iface
;
1881 IUnknown_AddRef((IUnknown
*)*ppv
);
1885 TMProxyImpl_Release(&proxy
->IRpcProxyBuffer_iface
);
1889 typedef struct _TMStubImpl
{
1890 IRpcStubBuffer IRpcStubBuffer_iface
;
1896 IRpcStubBuffer
*dispatch_stub
;
1897 BOOL dispatch_derivative
;
1900 static inline TMStubImpl
*impl_from_IRpcStubBuffer(IRpcStubBuffer
*iface
)
1902 return CONTAINING_RECORD(iface
, TMStubImpl
, IRpcStubBuffer_iface
);
1905 static HRESULT WINAPI
1906 TMStubImpl_QueryInterface(LPRPCSTUBBUFFER iface
, REFIID riid
, LPVOID
*ppv
)
1908 if (IsEqualIID(riid
,&IID_IRpcStubBuffer
)||IsEqualIID(riid
,&IID_IUnknown
)){
1910 IRpcStubBuffer_AddRef(iface
);
1913 FIXME("%s, not supported IID.\n",debugstr_guid(riid
));
1914 return E_NOINTERFACE
;
1918 TMStubImpl_AddRef(LPRPCSTUBBUFFER iface
)
1920 TMStubImpl
*This
= impl_from_IRpcStubBuffer(iface
);
1921 ULONG refCount
= InterlockedIncrement(&This
->ref
);
1923 TRACE("(%p)->(ref before=%u)\n", This
, refCount
- 1);
1929 TMStubImpl_Release(LPRPCSTUBBUFFER iface
)
1931 TMStubImpl
*This
= impl_from_IRpcStubBuffer(iface
);
1932 ULONG refCount
= InterlockedDecrement(&This
->ref
);
1934 TRACE("(%p)->(ref before=%u)\n", This
, refCount
+ 1);
1938 IRpcStubBuffer_Disconnect(iface
);
1939 ITypeInfo_Release(This
->tinfo
);
1940 if (This
->dispatch_stub
)
1941 IRpcStubBuffer_Release(This
->dispatch_stub
);
1942 CoTaskMemFree(This
);
1947 static HRESULT WINAPI
1948 TMStubImpl_Connect(LPRPCSTUBBUFFER iface
, LPUNKNOWN pUnkServer
)
1950 TMStubImpl
*This
= impl_from_IRpcStubBuffer(iface
);
1952 TRACE("(%p)->(%p)\n", This
, pUnkServer
);
1954 IUnknown_AddRef(pUnkServer
);
1955 This
->pUnk
= pUnkServer
;
1957 if (This
->dispatch_stub
)
1958 IRpcStubBuffer_Connect(This
->dispatch_stub
, pUnkServer
);
1964 TMStubImpl_Disconnect(LPRPCSTUBBUFFER iface
)
1966 TMStubImpl
*This
= impl_from_IRpcStubBuffer(iface
);
1968 TRACE("(%p)->()\n", This
);
1972 IUnknown_Release(This
->pUnk
);
1976 if (This
->dispatch_stub
)
1977 IRpcStubBuffer_Disconnect(This
->dispatch_stub
);
1980 static HRESULT WINAPI
1982 LPRPCSTUBBUFFER iface
, RPCOLEMESSAGE
* xmsg
,IRpcChannelBuffer
*rpcchanbuf
)
1986 const FUNCDESC
*fdesc
;
1987 TMStubImpl
*This
= impl_from_IRpcStubBuffer(iface
);
1989 DWORD
*args
= NULL
, res
, *xargs
, nrofargs
;
1994 ITypeInfo
*tinfo
= NULL
;
1998 if (xmsg
->iMethod
< 3) {
1999 ERR("IUnknown methods cannot be marshaled by the typelib marshaler\n");
2000 return E_UNEXPECTED
;
2003 if (This
->dispatch_derivative
&& xmsg
->iMethod
< sizeof(IDispatchVtbl
)/sizeof(void *))
2005 if (!This
->dispatch_stub
)
2007 IPSFactoryBuffer
*factory_buffer
;
2008 hres
= get_facbuf_for_iid(&IID_IDispatch
, &factory_buffer
);
2011 hres
= IPSFactoryBuffer_CreateStub(factory_buffer
, &IID_IDispatch
,
2012 This
->pUnk
, &This
->dispatch_stub
);
2013 IPSFactoryBuffer_Release(factory_buffer
);
2018 return IRpcStubBuffer_Invoke(This
->dispatch_stub
, xmsg
, rpcchanbuf
);
2021 memset(&buf
,0,sizeof(buf
));
2022 buf
.size
= xmsg
->cbBuffer
;
2023 buf
.base
= HeapAlloc(GetProcessHeap(), 0, xmsg
->cbBuffer
);
2024 memcpy(buf
.base
, xmsg
->Buffer
, xmsg
->cbBuffer
);
2027 hres
= get_funcdesc(This
->tinfo
,xmsg
->iMethod
,&tinfo
,&fdesc
,&iname
,NULL
,NULL
);
2029 ERR("GetFuncDesc on method %d failed with %x\n",xmsg
->iMethod
,hres
);
2033 if (iname
&& !lstrcmpW(iname
, IDispatchW
))
2035 ERR("IDispatch cannot be marshaled by the typelib marshaler\n");
2036 hres
= E_UNEXPECTED
;
2037 SysFreeString (iname
);
2041 SysFreeString (iname
);
2043 /* Need them for hack below */
2044 memset(names
,0,sizeof(names
));
2045 ITypeInfo_GetNames(tinfo
,fdesc
->memid
,names
,sizeof(names
)/sizeof(names
[0]),&nrofnames
);
2046 if (nrofnames
> sizeof(names
)/sizeof(names
[0])) {
2047 ERR("Need more names!\n");
2050 /*dump_FUNCDESC(fdesc);*/
2052 for (i
=0;i
<fdesc
->cParams
;i
++)
2053 nrofargs
+= _argsize(&fdesc
->lprgelemdescParam
[i
].tdesc
, tinfo
);
2054 args
= HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,(nrofargs
+1)*sizeof(DWORD
));
2057 hres
= E_OUTOFMEMORY
;
2061 /* Allocate all stuff used by call. */
2063 for (i
=0;i
<fdesc
->cParams
;i
++) {
2064 ELEMDESC
*elem
= fdesc
->lprgelemdescParam
+i
;
2066 hres
= deserialize_param(
2075 xargs
+= _argsize(&elem
->tdesc
, tinfo
);
2077 ERR("Failed to deserialize param %s, hres %x\n",relaystr(names
[i
+1]),hres
);
2082 args
[0] = (DWORD
)This
->pUnk
;
2087 (*((FARPROC
**)args
[0]))[fdesc
->oVft
/4],
2095 DWORD dwExceptionCode
= GetExceptionCode();
2096 ERR("invoke call failed with exception 0x%08x (%d)\n", dwExceptionCode
, dwExceptionCode
);
2097 if (FAILED(dwExceptionCode
))
2098 hres
= dwExceptionCode
;
2100 hres
= HRESULT_FROM_WIN32(dwExceptionCode
);
2110 for (i
=0;i
<fdesc
->cParams
;i
++) {
2111 ELEMDESC
*elem
= fdesc
->lprgelemdescParam
+i
;
2112 hres
= serialize_param(
2121 xargs
+= _argsize(&elem
->tdesc
, tinfo
);
2123 ERR("Failed to stuballoc param, hres %x\n",hres
);
2128 hres
= xbuf_add (&buf
, (LPBYTE
)&res
, sizeof(DWORD
));
2133 xmsg
->cbBuffer
= buf
.curoff
;
2134 hres
= IRpcChannelBuffer_GetBuffer(rpcchanbuf
, xmsg
, &This
->iid
);
2136 ERR("IRpcChannelBuffer_GetBuffer failed with error 0x%08x\n", hres
);
2139 memcpy(xmsg
->Buffer
, buf
.base
, buf
.curoff
);
2142 for (i
= 0; i
< nrofnames
; i
++)
2143 SysFreeString(names
[i
]);
2145 ITypeInfo_Release(tinfo
);
2146 HeapFree(GetProcessHeap(), 0, args
);
2148 HeapFree(GetProcessHeap(), 0, buf
.base
);
2150 TRACE("returning\n");
2153 FIXME( "not implemented on non-i386\n" );
2158 static LPRPCSTUBBUFFER WINAPI
2159 TMStubImpl_IsIIDSupported(LPRPCSTUBBUFFER iface
, REFIID riid
) {
2160 FIXME("Huh (%s)?\n",debugstr_guid(riid
));
2165 TMStubImpl_CountRefs(LPRPCSTUBBUFFER iface
) {
2166 TMStubImpl
*This
= impl_from_IRpcStubBuffer(iface
);
2169 return This
->ref
; /*FIXME? */
2172 static HRESULT WINAPI
2173 TMStubImpl_DebugServerQueryInterface(LPRPCSTUBBUFFER iface
, LPVOID
*ppv
) {
2178 TMStubImpl_DebugServerRelease(LPRPCSTUBBUFFER iface
, LPVOID ppv
) {
2182 static const IRpcStubBufferVtbl tmstubvtbl
= {
2183 TMStubImpl_QueryInterface
,
2187 TMStubImpl_Disconnect
,
2189 TMStubImpl_IsIIDSupported
,
2190 TMStubImpl_CountRefs
,
2191 TMStubImpl_DebugServerQueryInterface
,
2192 TMStubImpl_DebugServerRelease
2195 static HRESULT WINAPI
2196 PSFacBuf_CreateStub(
2197 LPPSFACTORYBUFFER iface
, REFIID riid
,IUnknown
*pUnkServer
,
2198 IRpcStubBuffer
** ppStub
2205 TRACE("(%s,%p,%p)\n",debugstr_guid(riid
),pUnkServer
,ppStub
);
2207 hres
= _get_typeinfo_for_iid(riid
,&tinfo
);
2209 ERR("No typeinfo for %s?\n",debugstr_guid(riid
));
2213 stub
= CoTaskMemAlloc(sizeof(TMStubImpl
));
2215 return E_OUTOFMEMORY
;
2216 stub
->IRpcStubBuffer_iface
.lpVtbl
= &tmstubvtbl
;
2218 stub
->tinfo
= tinfo
;
2219 stub
->dispatch_stub
= NULL
;
2220 stub
->dispatch_derivative
= FALSE
;
2222 hres
= IRpcStubBuffer_Connect(&stub
->IRpcStubBuffer_iface
,pUnkServer
);
2223 *ppStub
= &stub
->IRpcStubBuffer_iface
;
2224 TRACE("IRpcStubBuffer: %p\n", stub
);
2226 ERR("Connect to pUnkServer failed?\n");
2228 /* if we derive from IDispatch then defer to its stub for some of its methods */
2229 hres
= ITypeInfo_GetTypeAttr(tinfo
, &typeattr
);
2232 if (typeattr
->wTypeFlags
& TYPEFLAG_FDISPATCHABLE
)
2233 stub
->dispatch_derivative
= TRUE
;
2234 ITypeInfo_ReleaseTypeAttr(tinfo
, typeattr
);
2240 static const IPSFactoryBufferVtbl psfacbufvtbl
= {
2241 PSFacBuf_QueryInterface
,
2244 PSFacBuf_CreateProxy
,
2248 /* This is the whole PSFactoryBuffer object, just the vtableptr */
2249 static const IPSFactoryBufferVtbl
*lppsfac
= &psfacbufvtbl
;
2251 /***********************************************************************
2252 * TMARSHAL_DllGetClassObject
2254 HRESULT
TMARSHAL_DllGetClassObject(REFCLSID rclsid
, REFIID iid
,LPVOID
*ppv
)
2256 if (IsEqualIID(iid
,&IID_IPSFactoryBuffer
)) {
2260 return E_NOINTERFACE
;