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
) IStream_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
)) {
307 sprintf(typelibkey
,"Typelib\\%s\\%s\\0\\win32",tlguid
,ver
);
308 tlfnlen
= sizeof(tlfn
);
309 if (RegQueryValueA(HKEY_CLASSES_ROOT
,typelibkey
,tlfn
,&tlfnlen
)) {
311 ERR("Could not get typelib fn?\n");
317 MultiByteToWideChar(CP_ACP
, 0, tlfn
, -1, tlfnW
, sizeof(tlfnW
) / sizeof(tlfnW
[0]));
318 hres
= LoadTypeLib(tlfnW
,&tl
);
320 ERR("Failed to load typelib for %s, but it should be there.\n",debugstr_guid(riid
));
323 hres
= ITypeLib_GetTypeInfoOfGuid(tl
,riid
,ti
);
325 ERR("typelib does not contain info for %s?\n",debugstr_guid(riid
));
326 ITypeLib_Release(tl
);
329 ITypeLib_Release(tl
);
334 * Determine the number of functions including all inherited functions
335 * and well as the size of the vtbl.
336 * Note for non-dual dispinterfaces we simply return the size of IDispatch.
338 static HRESULT
num_of_funcs(ITypeInfo
*tinfo
, unsigned int *num
,
339 unsigned int *vtbl_size
)
344 UINT inherited_funcs
= 0, i
;
347 if(vtbl_size
) *vtbl_size
= 0;
349 hr
= ITypeInfo_GetTypeAttr(tinfo
, &attr
);
352 ERR("GetTypeAttr failed with %x\n", hr
);
356 if(attr
->typekind
== TKIND_DISPATCH
)
358 if(attr
->wTypeFlags
& TYPEFLAG_FDUAL
)
362 ITypeInfo_ReleaseTypeAttr(tinfo
, attr
);
363 hr
= ITypeInfo_GetRefTypeOfImplType(tinfo
, -1, &href
);
366 ERR("Unable to get interface href from dual dispinterface\n");
369 hr
= ITypeInfo_GetRefTypeInfo(tinfo
, href
, &tinfo2
);
372 ERR("Unable to get interface from dual dispinterface\n");
375 hr
= num_of_funcs(tinfo2
, num
, vtbl_size
);
376 ITypeInfo_Release(tinfo2
);
379 else /* non-dual dispinterface */
381 /* These will be the size of IDispatchVtbl */
382 *num
= attr
->cbSizeVft
/ sizeof(void *);
383 if(vtbl_size
) *vtbl_size
= attr
->cbSizeVft
;
384 ITypeInfo_ReleaseTypeAttr(tinfo
, attr
);
389 for (i
= 0; i
< attr
->cImplTypes
; i
++)
392 ITypeInfo
*pSubTypeInfo
;
395 hr
= ITypeInfo_GetRefTypeOfImplType(tinfo
, i
, &href
);
396 if (FAILED(hr
)) goto end
;
397 hr
= ITypeInfo_GetRefTypeInfo(tinfo
, href
, &pSubTypeInfo
);
398 if (FAILED(hr
)) goto end
;
400 hr
= num_of_funcs(pSubTypeInfo
, &sub_funcs
, NULL
);
401 ITypeInfo_Release(pSubTypeInfo
);
403 if(FAILED(hr
)) goto end
;
404 inherited_funcs
+= sub_funcs
;
407 *num
= inherited_funcs
+ attr
->cFuncs
;
408 if(vtbl_size
) *vtbl_size
= attr
->cbSizeVft
;
411 ITypeInfo_ReleaseTypeAttr(tinfo
, attr
);
417 #include "pshpack1.h"
419 typedef struct _TMAsmProxy
{
434 # warning You need to implement stubless proxies for your architecture
435 typedef struct _TMAsmProxy
{
439 typedef struct _TMProxyImpl
{
441 IRpcProxyBuffer IRpcProxyBuffer_iface
;
444 TMAsmProxy
*asmstubs
;
446 IRpcChannelBuffer
* chanbuf
;
448 CRITICAL_SECTION crit
;
449 IUnknown
*outerunknown
;
451 IRpcProxyBuffer
*dispatch_proxy
;
454 static inline TMProxyImpl
*impl_from_IRpcProxyBuffer( IRpcProxyBuffer
*iface
)
456 return CONTAINING_RECORD(iface
, TMProxyImpl
, IRpcProxyBuffer_iface
);
459 static HRESULT WINAPI
460 TMProxyImpl_QueryInterface(LPRPCPROXYBUFFER iface
, REFIID riid
, LPVOID
*ppv
)
463 if (IsEqualIID(riid
,&IID_IUnknown
)||IsEqualIID(riid
,&IID_IRpcProxyBuffer
)) {
465 IRpcProxyBuffer_AddRef(iface
);
468 FIXME("no interface for %s\n",debugstr_guid(riid
));
469 return E_NOINTERFACE
;
473 TMProxyImpl_AddRef(LPRPCPROXYBUFFER iface
)
475 TMProxyImpl
*This
= impl_from_IRpcProxyBuffer( iface
);
476 ULONG refCount
= InterlockedIncrement(&This
->ref
);
478 TRACE("(%p)->(ref before=%u)\n",This
, refCount
- 1);
484 TMProxyImpl_Release(LPRPCPROXYBUFFER iface
)
486 TMProxyImpl
*This
= impl_from_IRpcProxyBuffer( iface
);
487 ULONG refCount
= InterlockedDecrement(&This
->ref
);
489 TRACE("(%p)->(ref before=%u)\n",This
, refCount
+ 1);
493 if (This
->dispatch_proxy
) IRpcProxyBuffer_Release(This
->dispatch_proxy
);
494 This
->crit
.DebugInfo
->Spare
[0] = 0;
495 DeleteCriticalSection(&This
->crit
);
496 if (This
->chanbuf
) IRpcChannelBuffer_Release(This
->chanbuf
);
497 VirtualFree(This
->asmstubs
, 0, MEM_RELEASE
);
498 HeapFree(GetProcessHeap(), 0, This
->lpvtbl
);
499 ITypeInfo_Release(This
->tinfo
);
505 static HRESULT WINAPI
507 LPRPCPROXYBUFFER iface
,IRpcChannelBuffer
* pRpcChannelBuffer
)
509 TMProxyImpl
*This
= impl_from_IRpcProxyBuffer( iface
);
511 TRACE("(%p)\n", pRpcChannelBuffer
);
513 EnterCriticalSection(&This
->crit
);
515 IRpcChannelBuffer_AddRef(pRpcChannelBuffer
);
516 This
->chanbuf
= pRpcChannelBuffer
;
518 LeaveCriticalSection(&This
->crit
);
520 if (This
->dispatch_proxy
)
522 IRpcChannelBuffer
*pDelegateChannel
;
523 HRESULT hr
= TMarshalDispatchChannel_Create(pRpcChannelBuffer
, &This
->iid
, &pDelegateChannel
);
526 hr
= IRpcProxyBuffer_Connect(This
->dispatch_proxy
, pDelegateChannel
);
527 IRpcChannelBuffer_Release(pDelegateChannel
);
535 TMProxyImpl_Disconnect(LPRPCPROXYBUFFER iface
)
537 TMProxyImpl
*This
= impl_from_IRpcProxyBuffer( iface
);
541 EnterCriticalSection(&This
->crit
);
543 IRpcChannelBuffer_Release(This
->chanbuf
);
544 This
->chanbuf
= NULL
;
546 LeaveCriticalSection(&This
->crit
);
548 if (This
->dispatch_proxy
)
549 IRpcProxyBuffer_Disconnect(This
->dispatch_proxy
);
553 static const IRpcProxyBufferVtbl tmproxyvtable
= {
554 TMProxyImpl_QueryInterface
,
558 TMProxyImpl_Disconnect
561 /* how much space do we use on stack in DWORD steps. */
563 _argsize(TYPEDESC
*tdesc
, ITypeInfo
*tinfo
) {
567 return 8/sizeof(DWORD
);
569 return sizeof(double)/sizeof(DWORD
);
571 return sizeof(CY
)/sizeof(DWORD
);
573 return sizeof(DATE
)/sizeof(DWORD
);
575 return (sizeof(DECIMAL
)+3)/sizeof(DWORD
);
577 return (sizeof(VARIANT
)+3)/sizeof(DWORD
);
585 hres
= ITypeInfo_GetRefTypeInfo(tinfo
,tdesc
->u
.hreftype
,&tinfo2
);
587 return 0; /* should fail critically in serialize_param */
588 ITypeInfo_GetTypeAttr(tinfo2
,&tattr
);
589 ret
= (tattr
->cbSizeInstance
+3)/sizeof(DWORD
);
590 ITypeInfo_ReleaseTypeAttr(tinfo2
, tattr
);
591 ITypeInfo_Release(tinfo2
);
599 /* how much space do we use on the heap (in bytes) */
601 _xsize(const TYPEDESC
*td
, ITypeInfo
*tinfo
) {
608 return sizeof(VARIANT
);
611 const ARRAYDESC
*adesc
= td
->u
.lpadesc
;
613 for (i
=0;i
<adesc
->cDims
;i
++)
614 arrsize
*= adesc
->rgbounds
[i
].cElements
;
615 return arrsize
*_xsize(&adesc
->tdescElem
, tinfo
);
635 hres
= ITypeInfo_GetRefTypeInfo(tinfo
,td
->u
.hreftype
,&tinfo2
);
638 ITypeInfo_GetTypeAttr(tinfo2
,&tattr
);
639 ret
= tattr
->cbSizeInstance
;
640 ITypeInfo_ReleaseTypeAttr(tinfo2
, tattr
);
641 ITypeInfo_Release(tinfo2
);
649 /* Whether we pass this type by reference or by value */
651 _passbyref(const TYPEDESC
*td
, ITypeInfo
*tinfo
) {
652 if (td
->vt
== VT_USERDEFINED
||
653 td
->vt
== VT_VARIANT
||
673 TRACE("(tdesc.vt %s)\n",debugstr_vt(tdesc
->vt
));
676 if ((vartype
& 0xf000) == VT_ARRAY
)
677 vartype
= VT_SAFEARRAY
;
686 if (debugout
) TRACE_(olerelay
)("%x%x\n",arg
[0],arg
[1]);
688 hres
= xbuf_add(buf
,(LPBYTE
)arg
,8);
697 if (debugout
) TRACE_(olerelay
)("%x\n",*arg
);
699 hres
= xbuf_add(buf
,(LPBYTE
)arg
,sizeof(DWORD
));
705 if (debugout
) TRACE_(olerelay
)("%04x\n",*arg
& 0xffff);
707 hres
= xbuf_add(buf
,(LPBYTE
)arg
,sizeof(DWORD
));
712 if (debugout
) TRACE_(olerelay
)("%02x\n",*arg
& 0xff);
714 hres
= xbuf_add(buf
,(LPBYTE
)arg
,sizeof(DWORD
));
717 if (debugout
) TRACE_(olerelay
)("Vt(%s%s)(",debugstr_vt(V_VT((VARIANT
*)arg
)),debugstr_vf(V_VT((VARIANT
*)arg
)));
720 ULONG flags
= MAKELONG(MSHCTX_DIFFERENTMACHINE
, NDR_LOCAL_DATA_REPRESENTATION
);
721 ULONG size
= VARIANT_UserSize(&flags
, buf
->curoff
, (VARIANT
*)arg
);
722 xbuf_resize(buf
, size
);
723 VARIANT_UserMarshal(&flags
, buf
->base
+ buf
->curoff
, (VARIANT
*)arg
);
728 ULONG flags
= MAKELONG(MSHCTX_DIFFERENTMACHINE
, NDR_LOCAL_DATA_REPRESENTATION
);
729 VARIANT_UserFree(&flags
, (VARIANT
*)arg
);
734 if (writeit
&& debugout
) {
736 TRACE_(olerelay
)("%s",relaystr((WCHAR
*)*arg
));
738 TRACE_(olerelay
)("<bstr NULL>");
742 ULONG flags
= MAKELONG(MSHCTX_DIFFERENTMACHINE
, NDR_LOCAL_DATA_REPRESENTATION
);
743 ULONG size
= BSTR_UserSize(&flags
, buf
->curoff
, (BSTR
*)arg
);
744 xbuf_resize(buf
, size
);
745 BSTR_UserMarshal(&flags
, buf
->base
+ buf
->curoff
, (BSTR
*)arg
);
750 ULONG flags
= MAKELONG(MSHCTX_DIFFERENTMACHINE
, NDR_LOCAL_DATA_REPRESENTATION
);
751 BSTR_UserFree(&flags
, (BSTR
*)arg
);
757 BOOL derefhere
= TRUE
;
759 if (tdesc
->u
.lptdesc
->vt
== VT_USERDEFINED
) {
763 hres
= ITypeInfo_GetRefTypeInfo(tinfo
,tdesc
->u
.lptdesc
->u
.hreftype
,&tinfo2
);
765 ERR("Could not get typeinfo of hreftype %x for VT_USERDEFINED.\n",tdesc
->u
.lptdesc
->u
.hreftype
);
768 ITypeInfo_GetTypeAttr(tinfo2
,&tattr
);
769 switch (tattr
->typekind
) {
771 if (tattr
->tdescAlias
.vt
== VT_USERDEFINED
)
773 DWORD href
= tattr
->tdescAlias
.u
.hreftype
;
774 ITypeInfo_ReleaseTypeAttr(tinfo
, tattr
);
775 ITypeInfo_Release(tinfo2
);
776 hres
= ITypeInfo_GetRefTypeInfo(tinfo
,href
,&tinfo2
);
778 ERR("Could not get typeinfo of hreftype %x for VT_USERDEFINED.\n",tdesc
->u
.lptdesc
->u
.hreftype
);
781 ITypeInfo_GetTypeAttr(tinfo2
,&tattr
);
782 derefhere
= (tattr
->typekind
!= TKIND_DISPATCH
&& tattr
->typekind
!= TKIND_INTERFACE
);
785 case TKIND_ENUM
: /* confirmed */
786 case TKIND_RECORD
: /* FIXME: mostly untested */
788 case TKIND_DISPATCH
: /* will be done in VT_USERDEFINED case */
789 case TKIND_INTERFACE
: /* will be done in VT_USERDEFINED case */
793 FIXME("unhandled switch cases tattr->typekind %d\n", tattr
->typekind
);
797 ITypeInfo_ReleaseTypeAttr(tinfo
, tattr
);
798 ITypeInfo_Release(tinfo2
);
801 if (debugout
) TRACE_(olerelay
)("*");
802 /* Write always, so the other side knows when it gets a NULL pointer.
804 cookie
= *arg
? 0x42424242 : 0;
805 hres
= xbuf_add(buf
,(LPBYTE
)&cookie
,sizeof(cookie
));
809 if (debugout
) TRACE_(olerelay
)("NULL");
812 hres
= serialize_param(tinfo
,writeit
,debugout
,dealloc
,tdesc
->u
.lptdesc
,(DWORD
*)*arg
,buf
);
813 if (derefhere
&& dealloc
) HeapFree(GetProcessHeap(),0,(LPVOID
)*arg
);
817 if (debugout
) TRACE_(olerelay
)("unk(0x%x)",*arg
);
819 hres
= _marshal_interface(buf
,&IID_IUnknown
,(LPUNKNOWN
)*arg
);
820 if (dealloc
&& *(IUnknown
**)arg
)
821 IUnknown_Release((LPUNKNOWN
)*arg
);
824 if (debugout
) TRACE_(olerelay
)("idisp(0x%x)",*arg
);
826 hres
= _marshal_interface(buf
,&IID_IDispatch
,(LPUNKNOWN
)*arg
);
827 if (dealloc
&& *(IUnknown
**)arg
)
828 IUnknown_Release((LPUNKNOWN
)*arg
);
831 if (debugout
) TRACE_(olerelay
)("<void>");
833 case VT_USERDEFINED
: {
837 hres
= ITypeInfo_GetRefTypeInfo(tinfo
,tdesc
->u
.hreftype
,&tinfo2
);
839 ERR("Could not get typeinfo of hreftype %x for VT_USERDEFINED.\n",tdesc
->u
.hreftype
);
842 ITypeInfo_GetTypeAttr(tinfo2
,&tattr
);
843 switch (tattr
->typekind
) {
845 case TKIND_INTERFACE
:
847 hres
=_marshal_interface(buf
,&(tattr
->guid
),(LPUNKNOWN
)arg
);
849 IUnknown_Release((LPUNKNOWN
)arg
);
853 if (debugout
) TRACE_(olerelay
)("{");
854 for (i
=0;i
<tattr
->cVars
;i
++) {
859 hres
= ITypeInfo_GetVarDesc(tinfo2
, i
, &vdesc
);
861 ERR("Could not get vardesc of %d\n",i
);
864 elem2
= &vdesc
->elemdescVar
;
865 tdesc2
= &elem2
->tdesc
;
866 hres
= serialize_param(
872 (DWORD
*)(((LPBYTE
)arg
)+vdesc
->u
.oInst
),
875 ITypeInfo_ReleaseVarDesc(tinfo2
, vdesc
);
878 if (debugout
&& (i
<(tattr
->cVars
-1)))
879 TRACE_(olerelay
)(",");
881 if (debugout
) TRACE_(olerelay
)("}");
885 hres
= serialize_param(tinfo2
,writeit
,debugout
,dealloc
,&tattr
->tdescAlias
,arg
,buf
);
889 if (debugout
) TRACE_(olerelay
)("%x",*arg
);
891 hres
= xbuf_add(buf
,(LPBYTE
)arg
,sizeof(DWORD
));
894 FIXME("Unhandled typekind %d\n",tattr
->typekind
);
898 ITypeInfo_ReleaseTypeAttr(tinfo2
, tattr
);
899 ITypeInfo_Release(tinfo2
);
903 ARRAYDESC
*adesc
= tdesc
->u
.lpadesc
;
906 if (debugout
) TRACE_(olerelay
)("carr");
907 for (i
=0;i
<adesc
->cDims
;i
++) {
908 if (debugout
) TRACE_(olerelay
)("[%d]",adesc
->rgbounds
[i
].cElements
);
909 arrsize
*= adesc
->rgbounds
[i
].cElements
;
911 if (debugout
) TRACE_(olerelay
)("(vt %s)",debugstr_vt(adesc
->tdescElem
.vt
));
912 if (debugout
) TRACE_(olerelay
)("[");
913 for (i
=0;i
<arrsize
;i
++) {
914 LPBYTE base
= _passbyref(&adesc
->tdescElem
, tinfo
) ? (LPBYTE
) *arg
: (LPBYTE
) arg
;
915 hres
= serialize_param(tinfo
, writeit
, debugout
, dealloc
, &adesc
->tdescElem
, (DWORD
*)((LPBYTE
)base
+i
*_xsize(&adesc
->tdescElem
, tinfo
)), buf
);
918 if (debugout
&& (i
<arrsize
-1)) TRACE_(olerelay
)(",");
920 if (debugout
) TRACE_(olerelay
)("]");
922 HeapFree(GetProcessHeap(), 0, *(void **)arg
);
928 ULONG flags
= MAKELONG(MSHCTX_DIFFERENTMACHINE
, NDR_LOCAL_DATA_REPRESENTATION
);
929 ULONG size
= LPSAFEARRAY_UserSize(&flags
, buf
->curoff
, (LPSAFEARRAY
*)arg
);
930 xbuf_resize(buf
, size
);
931 LPSAFEARRAY_UserMarshal(&flags
, buf
->base
+ buf
->curoff
, (LPSAFEARRAY
*)arg
);
936 ULONG flags
= MAKELONG(MSHCTX_DIFFERENTMACHINE
, NDR_LOCAL_DATA_REPRESENTATION
);
937 LPSAFEARRAY_UserFree(&flags
, (LPSAFEARRAY
*)arg
);
942 ERR("Unhandled marshal type %d.\n",tdesc
->vt
);
960 TRACE("vt %s at %p\n",debugstr_vt(tdesc
->vt
),arg
);
963 if ((vartype
& 0xf000) == VT_ARRAY
)
964 vartype
= VT_SAFEARRAY
;
971 ULONG flags
= MAKELONG(MSHCTX_DIFFERENTMACHINE
, NDR_LOCAL_DATA_REPRESENTATION
);
972 unsigned char *buffer
;
973 buffer
= VARIANT_UserUnmarshal(&flags
, buf
->base
+ buf
->curoff
, (VARIANT
*)arg
);
974 buf
->curoff
= buffer
- buf
->base
;
984 hres
= xbuf_get(buf
,(LPBYTE
)arg
,8);
985 if (hres
) ERR("Failed to read integer 8 byte\n");
987 if (debugout
) TRACE_(olerelay
)("%x%x",arg
[0],arg
[1]);
996 hres
= xbuf_get(buf
,(LPBYTE
)arg
,sizeof(DWORD
));
997 if (hres
) ERR("Failed to read integer 4 byte\n");
999 if (debugout
) TRACE_(olerelay
)("%x",*arg
);
1006 hres
= xbuf_get(buf
,(LPBYTE
)&x
,sizeof(DWORD
));
1007 if (hres
) ERR("Failed to read integer 4 byte\n");
1010 if (debugout
) TRACE_(olerelay
)("%04x",*arg
& 0xffff);
1016 hres
= xbuf_get(buf
,(LPBYTE
)&x
,sizeof(DWORD
));
1017 if (hres
) ERR("Failed to read integer 4 byte\n");
1020 if (debugout
) TRACE_(olerelay
)("%02x",*arg
& 0xff);
1025 ULONG flags
= MAKELONG(MSHCTX_DIFFERENTMACHINE
, NDR_LOCAL_DATA_REPRESENTATION
);
1026 unsigned char *buffer
;
1027 buffer
= BSTR_UserUnmarshal(&flags
, buf
->base
+ buf
->curoff
, (BSTR
*)arg
);
1028 buf
->curoff
= buffer
- buf
->base
;
1029 if (debugout
) TRACE_(olerelay
)("%s",debugstr_w(*(BSTR
*)arg
));
1035 BOOL derefhere
= TRUE
;
1037 if (tdesc
->u
.lptdesc
->vt
== VT_USERDEFINED
) {
1041 hres
= ITypeInfo_GetRefTypeInfo(tinfo
,tdesc
->u
.lptdesc
->u
.hreftype
,&tinfo2
);
1043 ERR("Could not get typeinfo of hreftype %x for VT_USERDEFINED.\n",tdesc
->u
.lptdesc
->u
.hreftype
);
1046 ITypeInfo_GetTypeAttr(tinfo2
,&tattr
);
1047 switch (tattr
->typekind
) {
1049 if (tattr
->tdescAlias
.vt
== VT_USERDEFINED
)
1051 DWORD href
= tattr
->tdescAlias
.u
.hreftype
;
1052 ITypeInfo_ReleaseTypeAttr(tinfo
, tattr
);
1053 ITypeInfo_Release(tinfo2
);
1054 hres
= ITypeInfo_GetRefTypeInfo(tinfo
,href
,&tinfo2
);
1056 ERR("Could not get typeinfo of hreftype %x for VT_USERDEFINED.\n",tdesc
->u
.lptdesc
->u
.hreftype
);
1059 ITypeInfo_GetTypeAttr(tinfo2
,&tattr
);
1060 derefhere
= (tattr
->typekind
!= TKIND_DISPATCH
&& tattr
->typekind
!= TKIND_INTERFACE
);
1063 case TKIND_ENUM
: /* confirmed */
1064 case TKIND_RECORD
: /* FIXME: mostly untested */
1066 case TKIND_DISPATCH
: /* will be done in VT_USERDEFINED case */
1067 case TKIND_INTERFACE
: /* will be done in VT_USERDEFINED case */
1071 FIXME("unhandled switch cases tattr->typekind %d\n", tattr
->typekind
);
1075 ITypeInfo_ReleaseTypeAttr(tinfo2
, tattr
);
1076 ITypeInfo_Release(tinfo2
);
1078 /* read it in all cases, we need to know if we have
1079 * NULL pointer or not.
1081 hres
= xbuf_get(buf
,(LPBYTE
)&cookie
,sizeof(cookie
));
1083 ERR("Failed to load pointer cookie.\n");
1086 if (cookie
!= 0x42424242) {
1087 /* we read a NULL ptr from the remote side */
1088 if (debugout
) TRACE_(olerelay
)("NULL");
1092 if (debugout
) TRACE_(olerelay
)("*");
1094 /* Allocate space for the referenced struct */
1096 *arg
=(DWORD
)HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,_xsize(tdesc
->u
.lptdesc
, tinfo
));
1099 return deserialize_param(tinfo
, readit
, debugout
, alloc
, tdesc
->u
.lptdesc
, (LPDWORD
)*arg
, buf
);
1101 return deserialize_param(tinfo
, readit
, debugout
, alloc
, tdesc
->u
.lptdesc
, arg
, buf
);
1104 /* FIXME: UNKNOWN is unknown ..., but allocate 4 byte for it */
1106 *arg
=(DWORD
)HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,sizeof(DWORD
));
1109 hres
= _unmarshal_interface(buf
,&IID_IUnknown
,(LPUNKNOWN
*)arg
);
1111 TRACE_(olerelay
)("unk(%p)",arg
);
1116 hres
= _unmarshal_interface(buf
,&IID_IDispatch
,(LPUNKNOWN
*)arg
);
1118 TRACE_(olerelay
)("idisp(%p)",arg
);
1121 if (debugout
) TRACE_(olerelay
)("<void>");
1123 case VT_USERDEFINED
: {
1127 hres
= ITypeInfo_GetRefTypeInfo(tinfo
,tdesc
->u
.hreftype
,&tinfo2
);
1129 ERR("Could not get typeinfo of hreftype %x for VT_USERDEFINED.\n",tdesc
->u
.hreftype
);
1132 hres
= ITypeInfo_GetTypeAttr(tinfo2
,&tattr
);
1134 ERR("Could not get typeattr in VT_USERDEFINED.\n");
1136 switch (tattr
->typekind
) {
1137 case TKIND_DISPATCH
:
1138 case TKIND_INTERFACE
:
1140 hres
= _unmarshal_interface(buf
,&(tattr
->guid
),(LPUNKNOWN
*)arg
);
1142 case TKIND_RECORD
: {
1145 if (debugout
) TRACE_(olerelay
)("{");
1146 for (i
=0;i
<tattr
->cVars
;i
++) {
1149 hres
= ITypeInfo_GetVarDesc(tinfo2
, i
, &vdesc
);
1151 ERR("Could not get vardesc of %d\n",i
);
1152 ITypeInfo_ReleaseTypeAttr(tinfo2
, tattr
);
1153 ITypeInfo_Release(tinfo2
);
1156 hres
= deserialize_param(
1161 &vdesc
->elemdescVar
.tdesc
,
1162 (DWORD
*)(((LPBYTE
)arg
)+vdesc
->u
.oInst
),
1165 ITypeInfo_ReleaseVarDesc(tinfo2
, vdesc
);
1166 if (debugout
&& (i
<tattr
->cVars
-1)) TRACE_(olerelay
)(",");
1168 if (debugout
) TRACE_(olerelay
)("}");
1172 hres
= deserialize_param(tinfo2
,readit
,debugout
,alloc
,&tattr
->tdescAlias
,arg
,buf
);
1176 hres
= xbuf_get(buf
,(LPBYTE
)arg
,sizeof(DWORD
));
1177 if (hres
) ERR("Failed to read enum (4 byte)\n");
1179 if (debugout
) TRACE_(olerelay
)("%x",*arg
);
1182 ERR("Unhandled typekind %d\n",tattr
->typekind
);
1186 ITypeInfo_ReleaseTypeAttr(tinfo2
, tattr
);
1189 ERR("failed to stuballoc in TKIND_RECORD.\n");
1190 ITypeInfo_Release(tinfo2
);
1194 /* arg is pointing to the start of the array. */
1195 LPBYTE base
= (LPBYTE
) arg
;
1196 ARRAYDESC
*adesc
= tdesc
->u
.lpadesc
;
1199 if (adesc
->cDims
> 1) FIXME("cDims > 1 in VT_CARRAY. Does it work?\n");
1200 for (i
=0;i
<adesc
->cDims
;i
++)
1201 arrsize
*= adesc
->rgbounds
[i
].cElements
;
1202 if (_passbyref(&adesc
->tdescElem
, tinfo
))
1204 base
= HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,_xsize(tdesc
->u
.lptdesc
, tinfo
) * arrsize
);
1205 *arg
= (DWORD
) base
;
1207 for (i
=0;i
<arrsize
;i
++)
1214 (DWORD
*)(base
+ i
*_xsize(&adesc
->tdescElem
, tinfo
)),
1219 case VT_SAFEARRAY
: {
1222 ULONG flags
= MAKELONG(MSHCTX_DIFFERENTMACHINE
, NDR_LOCAL_DATA_REPRESENTATION
);
1223 unsigned char *buffer
;
1224 buffer
= LPSAFEARRAY_UserUnmarshal(&flags
, buf
->base
+ buf
->curoff
, (LPSAFEARRAY
*)arg
);
1225 buf
->curoff
= buffer
- buf
->base
;
1230 ERR("No handler for VT type %d!\n",tdesc
->vt
);
1236 /* Retrieves a function's funcdesc, searching back into inherited interfaces. */
1237 static HRESULT
get_funcdesc(ITypeInfo
*tinfo
, int iMethod
, ITypeInfo
**tactual
, const FUNCDESC
**fdesc
,
1238 BSTR
*iname
, BSTR
*fname
, UINT
*num
)
1242 UINT inherited_funcs
= 0;
1245 if (fname
) *fname
= NULL
;
1246 if (iname
) *iname
= NULL
;
1250 hr
= ITypeInfo_GetTypeAttr(tinfo
, &attr
);
1253 ERR("GetTypeAttr failed with %x\n",hr
);
1257 if(attr
->typekind
== TKIND_DISPATCH
)
1259 if(attr
->wTypeFlags
& TYPEFLAG_FDUAL
)
1264 hr
= ITypeInfo_GetRefTypeOfImplType(tinfo
, -1, &href
);
1267 ERR("Cannot get interface href from dual dispinterface\n");
1268 ITypeInfo_ReleaseTypeAttr(tinfo
, attr
);
1271 hr
= ITypeInfo_GetRefTypeInfo(tinfo
, href
, &tinfo2
);
1274 ERR("Cannot get interface from dual dispinterface\n");
1275 ITypeInfo_ReleaseTypeAttr(tinfo
, attr
);
1278 hr
= get_funcdesc(tinfo2
, iMethod
, tactual
, fdesc
, iname
, fname
, num
);
1279 ITypeInfo_Release(tinfo2
);
1280 ITypeInfo_ReleaseTypeAttr(tinfo
, attr
);
1283 ERR("Shouldn't be called with a non-dual dispinterface\n");
1287 impl_types
= attr
->cImplTypes
;
1288 ITypeInfo_ReleaseTypeAttr(tinfo
, attr
);
1290 for (i
= 0; i
< impl_types
; i
++)
1293 ITypeInfo
*pSubTypeInfo
;
1296 hr
= ITypeInfo_GetRefTypeOfImplType(tinfo
, i
, &href
);
1297 if (FAILED(hr
)) return hr
;
1298 hr
= ITypeInfo_GetRefTypeInfo(tinfo
, href
, &pSubTypeInfo
);
1299 if (FAILED(hr
)) return hr
;
1301 hr
= get_funcdesc(pSubTypeInfo
, iMethod
, tactual
, fdesc
, iname
, fname
, &sub_funcs
);
1302 inherited_funcs
+= sub_funcs
;
1303 ITypeInfo_Release(pSubTypeInfo
);
1304 if(SUCCEEDED(hr
)) return hr
;
1306 if(iMethod
< inherited_funcs
)
1308 ERR("shouldn't be here\n");
1309 return E_INVALIDARG
;
1312 for(i
= inherited_funcs
; i
<= iMethod
; i
++)
1314 hr
= ITypeInfoImpl_GetInternalFuncDesc(tinfo
, i
- inherited_funcs
, fdesc
);
1322 /* found it. We don't care about num so zero it */
1325 ITypeInfo_AddRef(*tactual
);
1326 if (fname
) ITypeInfo_GetDocumentation(tinfo
,(*fdesc
)->memid
,fname
,NULL
,NULL
,NULL
);
1327 if (iname
) ITypeInfo_GetDocumentation(tinfo
,-1,iname
,NULL
,NULL
,NULL
);
1331 static inline BOOL
is_in_elem(const ELEMDESC
*elem
)
1333 return (elem
->u
.paramdesc
.wParamFlags
& PARAMFLAG_FIN
|| !elem
->u
.paramdesc
.wParamFlags
);
1336 static inline BOOL
is_out_elem(const ELEMDESC
*elem
)
1338 return (elem
->u
.paramdesc
.wParamFlags
& PARAMFLAG_FOUT
|| !elem
->u
.paramdesc
.wParamFlags
);
1341 static DWORD WINAPI
xCall(int method
, void **args
)
1343 TMProxyImpl
*tpinfo
= args
[0];
1345 const FUNCDESC
*fdesc
;
1354 DWORD remoteresult
= 0;
1356 IRpcChannelBuffer
*chanbuf
;
1358 EnterCriticalSection(&tpinfo
->crit
);
1360 hres
= get_funcdesc(tpinfo
->tinfo
,method
,&tinfo
,&fdesc
,&iname
,&fname
,NULL
);
1362 ERR("Did not find typeinfo/funcdesc entry for method %d!\n",method
);
1363 LeaveCriticalSection(&tpinfo
->crit
);
1367 if (!tpinfo
->chanbuf
)
1369 WARN("Tried to use disconnected proxy\n");
1370 ITypeInfo_Release(tinfo
);
1371 LeaveCriticalSection(&tpinfo
->crit
);
1372 return RPC_E_DISCONNECTED
;
1374 chanbuf
= tpinfo
->chanbuf
;
1375 IRpcChannelBuffer_AddRef(chanbuf
);
1377 LeaveCriticalSection(&tpinfo
->crit
);
1379 if (TRACE_ON(olerelay
)) {
1380 TRACE_(olerelay
)("->");
1382 TRACE_(olerelay
)("%s:",relaystr(iname
));
1384 TRACE_(olerelay
)("%s(%d)",relaystr(fname
),method
);
1386 TRACE_(olerelay
)("%d",method
);
1387 TRACE_(olerelay
)("(");
1390 SysFreeString(iname
);
1391 SysFreeString(fname
);
1393 memset(&buf
,0,sizeof(buf
));
1395 /* normal typelib driven serializing */
1397 /* Need them for hack below */
1398 memset(names
,0,sizeof(names
));
1399 if (ITypeInfo_GetNames(tinfo
,fdesc
->memid
,names
,sizeof(names
)/sizeof(names
[0]),&nrofnames
))
1401 if (nrofnames
> sizeof(names
)/sizeof(names
[0]))
1402 ERR("Need more names!\n");
1404 xargs
= (DWORD
*)(args
+ 1);
1405 for (i
=0;i
<fdesc
->cParams
;i
++) {
1406 ELEMDESC
*elem
= fdesc
->lprgelemdescParam
+i
;
1407 if (TRACE_ON(olerelay
)) {
1408 if (i
) TRACE_(olerelay
)(",");
1409 if (i
+1<nrofnames
&& names
[i
+1])
1410 TRACE_(olerelay
)("%s=",relaystr(names
[i
+1]));
1412 /* No need to marshal other data than FIN and any VT_PTR. */
1413 if (!is_in_elem(elem
))
1415 if (elem
->tdesc
.vt
!= VT_PTR
)
1417 xargs
+=_argsize(&elem
->tdesc
, tinfo
);
1418 TRACE_(olerelay
)("[out]");
1423 memset( *(void **)xargs
, 0, _xsize( elem
->tdesc
.u
.lptdesc
, tinfo
) );
1427 hres
= serialize_param(
1438 ERR("Failed to serialize param, hres %x\n",hres
);
1441 xargs
+=_argsize(&elem
->tdesc
, tinfo
);
1443 TRACE_(olerelay
)(")");
1445 memset(&msg
,0,sizeof(msg
));
1446 msg
.cbBuffer
= buf
.curoff
;
1447 msg
.iMethod
= method
;
1448 hres
= IRpcChannelBuffer_GetBuffer(chanbuf
,&msg
,&(tpinfo
->iid
));
1450 ERR("RpcChannelBuffer GetBuffer failed, %x\n",hres
);
1453 memcpy(msg
.Buffer
,buf
.base
,buf
.curoff
);
1454 TRACE_(olerelay
)("\n");
1455 hres
= IRpcChannelBuffer_SendReceive(chanbuf
,&msg
,&status
);
1457 ERR("RpcChannelBuffer SendReceive failed, %x\n",hres
);
1461 TRACE_(olerelay
)(" status = %08x (",status
);
1463 buf
.base
= HeapReAlloc(GetProcessHeap(),0,buf
.base
,msg
.cbBuffer
);
1465 buf
.base
= HeapAlloc(GetProcessHeap(),0,msg
.cbBuffer
);
1466 buf
.size
= msg
.cbBuffer
;
1467 memcpy(buf
.base
,msg
.Buffer
,buf
.size
);
1470 /* generic deserializer using typelib description */
1471 xargs
= (DWORD
*)(args
+ 1);
1473 for (i
=0;i
<fdesc
->cParams
;i
++) {
1474 ELEMDESC
*elem
= fdesc
->lprgelemdescParam
+i
;
1476 if (i
) TRACE_(olerelay
)(",");
1477 if (i
+1<nrofnames
&& names
[i
+1]) TRACE_(olerelay
)("%s=",relaystr(names
[i
+1]));
1479 /* No need to marshal other data than FOUT and any VT_PTR */
1480 if (!is_out_elem(elem
) && (elem
->tdesc
.vt
!= VT_PTR
)) {
1481 xargs
+= _argsize(&elem
->tdesc
, tinfo
);
1482 TRACE_(olerelay
)("[in]");
1485 hres
= deserialize_param(
1495 ERR("Failed to unmarshall param, hres %x\n",hres
);
1499 xargs
+= _argsize(&elem
->tdesc
, tinfo
);
1502 hres
= xbuf_get(&buf
, (LPBYTE
)&remoteresult
, sizeof(DWORD
));
1505 TRACE_(olerelay
)(") = %08x\n", remoteresult
);
1507 hres
= remoteresult
;
1510 IRpcChannelBuffer_FreeBuffer(chanbuf
,&msg
);
1511 for (i
= 0; i
< nrofnames
; i
++)
1512 SysFreeString(names
[i
]);
1513 HeapFree(GetProcessHeap(),0,buf
.base
);
1514 IRpcChannelBuffer_Release(chanbuf
);
1515 ITypeInfo_Release(tinfo
);
1516 TRACE("-- 0x%08x\n", hres
);
1520 static HRESULT WINAPI
ProxyIUnknown_QueryInterface(IUnknown
*iface
, REFIID riid
, void **ppv
)
1522 TMProxyImpl
*proxy
= (TMProxyImpl
*)iface
;
1524 TRACE("(%s, %p)\n", debugstr_guid(riid
), ppv
);
1526 if (proxy
->outerunknown
)
1527 return IUnknown_QueryInterface(proxy
->outerunknown
, riid
, ppv
);
1529 FIXME("No interface\n");
1530 return E_NOINTERFACE
;
1533 static ULONG WINAPI
ProxyIUnknown_AddRef(IUnknown
*iface
)
1535 TMProxyImpl
*proxy
= (TMProxyImpl
*)iface
;
1539 if (proxy
->outerunknown
)
1540 return IUnknown_AddRef(proxy
->outerunknown
);
1542 return 2; /* FIXME */
1545 static ULONG WINAPI
ProxyIUnknown_Release(IUnknown
*iface
)
1547 TMProxyImpl
*proxy
= (TMProxyImpl
*)iface
;
1551 if (proxy
->outerunknown
)
1552 return IUnknown_Release(proxy
->outerunknown
);
1554 return 1; /* FIXME */
1557 static HRESULT WINAPI
ProxyIDispatch_GetTypeInfoCount(LPDISPATCH iface
, UINT
* pctinfo
)
1559 TMProxyImpl
*This
= (TMProxyImpl
*)iface
;
1561 TRACE("(%p)\n", pctinfo
);
1563 return IDispatch_GetTypeInfoCount(This
->dispatch
, pctinfo
);
1566 static HRESULT WINAPI
ProxyIDispatch_GetTypeInfo(LPDISPATCH iface
, UINT iTInfo
, LCID lcid
, ITypeInfo
** ppTInfo
)
1568 TMProxyImpl
*This
= (TMProxyImpl
*)iface
;
1570 TRACE("(%d, %x, %p)\n", iTInfo
, lcid
, ppTInfo
);
1572 return IDispatch_GetTypeInfo(This
->dispatch
, iTInfo
, lcid
, ppTInfo
);
1575 static HRESULT WINAPI
ProxyIDispatch_GetIDsOfNames(LPDISPATCH iface
, REFIID riid
, LPOLESTR
* rgszNames
, UINT cNames
, LCID lcid
, DISPID
* rgDispId
)
1577 TMProxyImpl
*This
= (TMProxyImpl
*)iface
;
1579 TRACE("(%s, %p, %d, 0x%x, %p)\n", debugstr_guid(riid
), rgszNames
, cNames
, lcid
, rgDispId
);
1581 return IDispatch_GetIDsOfNames(This
->dispatch
, riid
, rgszNames
,
1582 cNames
, lcid
, rgDispId
);
1585 static HRESULT WINAPI
ProxyIDispatch_Invoke(LPDISPATCH iface
, DISPID dispIdMember
, REFIID riid
, LCID lcid
,
1586 WORD wFlags
, DISPPARAMS
* pDispParams
, VARIANT
* pVarResult
,
1587 EXCEPINFO
* pExcepInfo
, UINT
* puArgErr
)
1589 TMProxyImpl
*This
= (TMProxyImpl
*)iface
;
1591 TRACE("(%d, %s, 0x%x, 0x%x, %p, %p, %p, %p)\n", dispIdMember
,
1592 debugstr_guid(riid
), lcid
, wFlags
, pDispParams
, pVarResult
,
1593 pExcepInfo
, puArgErr
);
1595 return IDispatch_Invoke(This
->dispatch
, dispIdMember
, riid
, lcid
,
1596 wFlags
, pDispParams
, pVarResult
, pExcepInfo
,
1602 IRpcChannelBuffer IRpcChannelBuffer_iface
;
1604 /* the IDispatch-derived interface we are handling */
1606 IRpcChannelBuffer
*pDelegateChannel
;
1607 } TMarshalDispatchChannel
;
1609 static inline TMarshalDispatchChannel
*impl_from_IRpcChannelBuffer(IRpcChannelBuffer
*iface
)
1611 return CONTAINING_RECORD(iface
, TMarshalDispatchChannel
, IRpcChannelBuffer_iface
);
1614 static HRESULT WINAPI
TMarshalDispatchChannel_QueryInterface(IRpcChannelBuffer
*iface
, REFIID riid
, LPVOID
*ppv
)
1617 if (IsEqualIID(riid
,&IID_IRpcChannelBuffer
) || IsEqualIID(riid
,&IID_IUnknown
))
1620 IRpcChannelBuffer_AddRef(iface
);
1623 return E_NOINTERFACE
;
1626 static ULONG WINAPI
TMarshalDispatchChannel_AddRef(LPRPCCHANNELBUFFER iface
)
1628 TMarshalDispatchChannel
*This
= impl_from_IRpcChannelBuffer(iface
);
1629 return InterlockedIncrement(&This
->refs
);
1632 static ULONG WINAPI
TMarshalDispatchChannel_Release(LPRPCCHANNELBUFFER iface
)
1634 TMarshalDispatchChannel
*This
= impl_from_IRpcChannelBuffer(iface
);
1637 ref
= InterlockedDecrement(&This
->refs
);
1641 IRpcChannelBuffer_Release(This
->pDelegateChannel
);
1642 HeapFree(GetProcessHeap(), 0, This
);
1646 static HRESULT WINAPI
TMarshalDispatchChannel_GetBuffer(LPRPCCHANNELBUFFER iface
, RPCOLEMESSAGE
* olemsg
, REFIID riid
)
1648 TMarshalDispatchChannel
*This
= impl_from_IRpcChannelBuffer(iface
);
1649 TRACE("(%p, %s)\n", olemsg
, debugstr_guid(riid
));
1650 /* Note: we are pretending to invoke a method on the interface identified
1651 * by tmarshal_iid so that we can re-use the IDispatch proxy/stub code
1652 * without the RPC runtime getting confused by not exporting an IDispatch interface */
1653 return IRpcChannelBuffer_GetBuffer(This
->pDelegateChannel
, olemsg
, &This
->tmarshal_iid
);
1656 static HRESULT WINAPI
TMarshalDispatchChannel_SendReceive(LPRPCCHANNELBUFFER iface
, RPCOLEMESSAGE
*olemsg
, ULONG
*pstatus
)
1658 TMarshalDispatchChannel
*This
= impl_from_IRpcChannelBuffer(iface
);
1659 TRACE("(%p, %p)\n", olemsg
, pstatus
);
1660 return IRpcChannelBuffer_SendReceive(This
->pDelegateChannel
, olemsg
, pstatus
);
1663 static HRESULT WINAPI
TMarshalDispatchChannel_FreeBuffer(LPRPCCHANNELBUFFER iface
, RPCOLEMESSAGE
* olemsg
)
1665 TMarshalDispatchChannel
*This
= impl_from_IRpcChannelBuffer(iface
);
1666 TRACE("(%p)\n", olemsg
);
1667 return IRpcChannelBuffer_FreeBuffer(This
->pDelegateChannel
, olemsg
);
1670 static HRESULT WINAPI
TMarshalDispatchChannel_GetDestCtx(LPRPCCHANNELBUFFER iface
, DWORD
* pdwDestContext
, void** ppvDestContext
)
1672 TMarshalDispatchChannel
*This
= impl_from_IRpcChannelBuffer(iface
);
1673 TRACE("(%p,%p)\n", pdwDestContext
, ppvDestContext
);
1674 return IRpcChannelBuffer_GetDestCtx(This
->pDelegateChannel
, pdwDestContext
, ppvDestContext
);
1677 static HRESULT WINAPI
TMarshalDispatchChannel_IsConnected(LPRPCCHANNELBUFFER iface
)
1679 TMarshalDispatchChannel
*This
= impl_from_IRpcChannelBuffer(iface
);
1681 return IRpcChannelBuffer_IsConnected(This
->pDelegateChannel
);
1684 static const IRpcChannelBufferVtbl TMarshalDispatchChannelVtbl
=
1686 TMarshalDispatchChannel_QueryInterface
,
1687 TMarshalDispatchChannel_AddRef
,
1688 TMarshalDispatchChannel_Release
,
1689 TMarshalDispatchChannel_GetBuffer
,
1690 TMarshalDispatchChannel_SendReceive
,
1691 TMarshalDispatchChannel_FreeBuffer
,
1692 TMarshalDispatchChannel_GetDestCtx
,
1693 TMarshalDispatchChannel_IsConnected
1696 static HRESULT
TMarshalDispatchChannel_Create(
1697 IRpcChannelBuffer
*pDelegateChannel
, REFIID tmarshal_riid
,
1698 IRpcChannelBuffer
**ppChannel
)
1700 TMarshalDispatchChannel
*This
= HeapAlloc(GetProcessHeap(), 0, sizeof(*This
));
1702 return E_OUTOFMEMORY
;
1704 This
->IRpcChannelBuffer_iface
.lpVtbl
= &TMarshalDispatchChannelVtbl
;
1706 IRpcChannelBuffer_AddRef(pDelegateChannel
);
1707 This
->pDelegateChannel
= pDelegateChannel
;
1708 This
->tmarshal_iid
= *tmarshal_riid
;
1710 *ppChannel
= &This
->IRpcChannelBuffer_iface
;
1715 static inline HRESULT
get_facbuf_for_iid(REFIID riid
, IPSFactoryBuffer
**facbuf
)
1720 if ((hr
= CoGetPSClsid(riid
, &clsid
)))
1722 return CoGetClassObject(&clsid
, CLSCTX_INPROC_SERVER
, NULL
,
1723 &IID_IPSFactoryBuffer
, (LPVOID
*)facbuf
);
1726 static HRESULT
init_proxy_entry_point(TMProxyImpl
*proxy
, unsigned int num
)
1729 /* nrofargs including This */
1732 TMAsmProxy
*xasm
= proxy
->asmstubs
+ num
;
1734 const FUNCDESC
*fdesc
;
1736 hres
= get_funcdesc(proxy
->tinfo
, num
, &tinfo2
, &fdesc
, NULL
, NULL
, NULL
);
1738 ERR("GetFuncDesc %x should not fail here.\n",hres
);
1741 ITypeInfo_Release(tinfo2
);
1742 /* some args take more than 4 byte on the stack */
1743 for (j
=0;j
<fdesc
->cParams
;j
++)
1744 nrofargs
+= _argsize(&fdesc
->lprgelemdescParam
[j
].tdesc
, proxy
->tinfo
);
1747 if (fdesc
->callconv
!= CC_STDCALL
) {
1748 ERR("calling convention is not stdcall????\n");
1751 /* leal 4(%esp),%eax
1757 xasm
->lealeax
= 0x0424448d;
1758 xasm
->pushleax
= 0x50;
1759 xasm
->pushlval
= 0x68;
1762 xasm
->xcall
= (char *)xCall
- (char *)&xasm
->lret
;
1764 xasm
->bytestopop
= nrofargs
* 4;
1766 proxy
->lpvtbl
[fdesc
->oVft
/ sizeof(void *)] = xasm
;
1768 FIXME("not implemented on non i386\n");
1774 static HRESULT WINAPI
1775 PSFacBuf_CreateProxy(
1776 LPPSFACTORYBUFFER iface
, IUnknown
* pUnkOuter
, REFIID riid
,
1777 IRpcProxyBuffer
**ppProxy
, LPVOID
*ppv
)
1781 unsigned int i
, nroffuncs
, vtbl_size
;
1784 BOOL defer_to_dispatch
= FALSE
;
1786 TRACE("(...%s...)\n",debugstr_guid(riid
));
1787 hres
= _get_typeinfo_for_iid(riid
,&tinfo
);
1789 ERR("No typeinfo for %s?\n",debugstr_guid(riid
));
1793 hres
= num_of_funcs(tinfo
, &nroffuncs
, &vtbl_size
);
1794 TRACE("Got %d funcs, vtbl size %d\n", nroffuncs
, vtbl_size
);
1797 ERR("Cannot get number of functions for typeinfo %s\n",debugstr_guid(riid
));
1798 ITypeInfo_Release(tinfo
);
1802 proxy
= CoTaskMemAlloc(sizeof(TMProxyImpl
));
1803 if (!proxy
) return E_OUTOFMEMORY
;
1805 proxy
->dispatch
= NULL
;
1806 proxy
->dispatch_proxy
= NULL
;
1807 proxy
->outerunknown
= pUnkOuter
;
1808 proxy
->asmstubs
= VirtualAlloc(NULL
, sizeof(TMAsmProxy
) * nroffuncs
, MEM_COMMIT
, PAGE_EXECUTE_READWRITE
);
1809 if (!proxy
->asmstubs
) {
1810 ERR("Could not commit pages for proxy thunks\n");
1811 CoTaskMemFree(proxy
);
1812 return E_OUTOFMEMORY
;
1814 proxy
->IRpcProxyBuffer_iface
.lpVtbl
= &tmproxyvtable
;
1815 /* one reference for the proxy */
1817 proxy
->tinfo
= tinfo
;
1821 InitializeCriticalSection(&proxy
->crit
);
1822 proxy
->crit
.DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": TMProxyImpl.crit");
1824 proxy
->lpvtbl
= HeapAlloc(GetProcessHeap(), 0, vtbl_size
);
1826 /* if we derive from IDispatch then defer to its proxy for its methods */
1827 hres
= ITypeInfo_GetTypeAttr(tinfo
, &typeattr
);
1830 if (typeattr
->wTypeFlags
& TYPEFLAG_FDISPATCHABLE
)
1832 IPSFactoryBuffer
*factory_buffer
;
1833 hres
= get_facbuf_for_iid(&IID_IDispatch
, &factory_buffer
);
1836 hres
= IPSFactoryBuffer_CreateProxy(factory_buffer
, NULL
,
1837 &IID_IDispatch
, &proxy
->dispatch_proxy
,
1838 (void **)&proxy
->dispatch
);
1839 IPSFactoryBuffer_Release(factory_buffer
);
1841 if ((hres
== S_OK
) && (nroffuncs
< 7))
1843 ERR("nroffuncs calculated incorrectly (%d)\n", nroffuncs
);
1844 hres
= E_UNEXPECTED
;
1848 defer_to_dispatch
= TRUE
;
1851 ITypeInfo_ReleaseTypeAttr(tinfo
, typeattr
);
1854 for (i
=0;i
<nroffuncs
;i
++) {
1857 proxy
->lpvtbl
[i
] = ProxyIUnknown_QueryInterface
;
1860 proxy
->lpvtbl
[i
] = ProxyIUnknown_AddRef
;
1863 proxy
->lpvtbl
[i
] = ProxyIUnknown_Release
;
1866 if(!defer_to_dispatch
) hres
= init_proxy_entry_point(proxy
, i
);
1867 else proxy
->lpvtbl
[3] = ProxyIDispatch_GetTypeInfoCount
;
1870 if(!defer_to_dispatch
) hres
= init_proxy_entry_point(proxy
, i
);
1871 else proxy
->lpvtbl
[4] = ProxyIDispatch_GetTypeInfo
;
1874 if(!defer_to_dispatch
) hres
= init_proxy_entry_point(proxy
, i
);
1875 else proxy
->lpvtbl
[5] = ProxyIDispatch_GetIDsOfNames
;
1878 if(!defer_to_dispatch
) hres
= init_proxy_entry_point(proxy
, i
);
1879 else proxy
->lpvtbl
[6] = ProxyIDispatch_Invoke
;
1882 hres
= init_proxy_entry_point(proxy
, i
);
1889 *ppProxy
= &proxy
->IRpcProxyBuffer_iface
;
1890 IUnknown_AddRef((IUnknown
*)*ppv
);
1894 TMProxyImpl_Release(&proxy
->IRpcProxyBuffer_iface
);
1898 typedef struct _TMStubImpl
{
1899 IRpcStubBuffer IRpcStubBuffer_iface
;
1905 IRpcStubBuffer
*dispatch_stub
;
1906 BOOL dispatch_derivative
;
1909 static inline TMStubImpl
*impl_from_IRpcStubBuffer(IRpcStubBuffer
*iface
)
1911 return CONTAINING_RECORD(iface
, TMStubImpl
, IRpcStubBuffer_iface
);
1914 static HRESULT WINAPI
1915 TMStubImpl_QueryInterface(LPRPCSTUBBUFFER iface
, REFIID riid
, LPVOID
*ppv
)
1917 if (IsEqualIID(riid
,&IID_IRpcStubBuffer
)||IsEqualIID(riid
,&IID_IUnknown
)){
1919 IRpcStubBuffer_AddRef(iface
);
1922 FIXME("%s, not supported IID.\n",debugstr_guid(riid
));
1923 return E_NOINTERFACE
;
1927 TMStubImpl_AddRef(LPRPCSTUBBUFFER iface
)
1929 TMStubImpl
*This
= impl_from_IRpcStubBuffer(iface
);
1930 ULONG refCount
= InterlockedIncrement(&This
->ref
);
1932 TRACE("(%p)->(ref before=%u)\n", This
, refCount
- 1);
1938 TMStubImpl_Release(LPRPCSTUBBUFFER iface
)
1940 TMStubImpl
*This
= impl_from_IRpcStubBuffer(iface
);
1941 ULONG refCount
= InterlockedDecrement(&This
->ref
);
1943 TRACE("(%p)->(ref before=%u)\n", This
, refCount
+ 1);
1947 IRpcStubBuffer_Disconnect(iface
);
1948 ITypeInfo_Release(This
->tinfo
);
1949 if (This
->dispatch_stub
)
1950 IRpcStubBuffer_Release(This
->dispatch_stub
);
1951 CoTaskMemFree(This
);
1956 static HRESULT WINAPI
1957 TMStubImpl_Connect(LPRPCSTUBBUFFER iface
, LPUNKNOWN pUnkServer
)
1959 TMStubImpl
*This
= impl_from_IRpcStubBuffer(iface
);
1961 TRACE("(%p)->(%p)\n", This
, pUnkServer
);
1963 IUnknown_AddRef(pUnkServer
);
1964 This
->pUnk
= pUnkServer
;
1966 if (This
->dispatch_stub
)
1967 IRpcStubBuffer_Connect(This
->dispatch_stub
, pUnkServer
);
1973 TMStubImpl_Disconnect(LPRPCSTUBBUFFER iface
)
1975 TMStubImpl
*This
= impl_from_IRpcStubBuffer(iface
);
1977 TRACE("(%p)->()\n", This
);
1981 IUnknown_Release(This
->pUnk
);
1985 if (This
->dispatch_stub
)
1986 IRpcStubBuffer_Disconnect(This
->dispatch_stub
);
1989 static HRESULT WINAPI
1991 LPRPCSTUBBUFFER iface
, RPCOLEMESSAGE
* xmsg
,IRpcChannelBuffer
*rpcchanbuf
)
1995 const FUNCDESC
*fdesc
;
1996 TMStubImpl
*This
= impl_from_IRpcStubBuffer(iface
);
1998 DWORD
*args
= NULL
, res
, *xargs
, nrofargs
;
2003 ITypeInfo
*tinfo
= NULL
;
2007 if (xmsg
->iMethod
< 3) {
2008 ERR("IUnknown methods cannot be marshaled by the typelib marshaler\n");
2009 return E_UNEXPECTED
;
2012 if (This
->dispatch_derivative
&& xmsg
->iMethod
< sizeof(IDispatchVtbl
)/sizeof(void *))
2014 if (!This
->dispatch_stub
)
2016 IPSFactoryBuffer
*factory_buffer
;
2017 hres
= get_facbuf_for_iid(&IID_IDispatch
, &factory_buffer
);
2020 hres
= IPSFactoryBuffer_CreateStub(factory_buffer
, &IID_IDispatch
,
2021 This
->pUnk
, &This
->dispatch_stub
);
2022 IPSFactoryBuffer_Release(factory_buffer
);
2027 return IRpcStubBuffer_Invoke(This
->dispatch_stub
, xmsg
, rpcchanbuf
);
2030 memset(&buf
,0,sizeof(buf
));
2031 buf
.size
= xmsg
->cbBuffer
;
2032 buf
.base
= HeapAlloc(GetProcessHeap(), 0, xmsg
->cbBuffer
);
2033 memcpy(buf
.base
, xmsg
->Buffer
, xmsg
->cbBuffer
);
2036 hres
= get_funcdesc(This
->tinfo
,xmsg
->iMethod
,&tinfo
,&fdesc
,&iname
,NULL
,NULL
);
2038 ERR("GetFuncDesc on method %d failed with %x\n",xmsg
->iMethod
,hres
);
2042 if (iname
&& !lstrcmpW(iname
, IDispatchW
))
2044 ERR("IDispatch cannot be marshaled by the typelib marshaler\n");
2045 hres
= E_UNEXPECTED
;
2046 SysFreeString (iname
);
2050 SysFreeString (iname
);
2052 /* Need them for hack below */
2053 memset(names
,0,sizeof(names
));
2054 ITypeInfo_GetNames(tinfo
,fdesc
->memid
,names
,sizeof(names
)/sizeof(names
[0]),&nrofnames
);
2055 if (nrofnames
> sizeof(names
)/sizeof(names
[0])) {
2056 ERR("Need more names!\n");
2059 /*dump_FUNCDESC(fdesc);*/
2061 for (i
=0;i
<fdesc
->cParams
;i
++)
2062 nrofargs
+= _argsize(&fdesc
->lprgelemdescParam
[i
].tdesc
, tinfo
);
2063 args
= HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,(nrofargs
+1)*sizeof(DWORD
));
2066 hres
= E_OUTOFMEMORY
;
2070 /* Allocate all stuff used by call. */
2072 for (i
=0;i
<fdesc
->cParams
;i
++) {
2073 ELEMDESC
*elem
= fdesc
->lprgelemdescParam
+i
;
2075 hres
= deserialize_param(
2084 xargs
+= _argsize(&elem
->tdesc
, tinfo
);
2086 ERR("Failed to deserialize param %s, hres %x\n",relaystr(names
[i
+1]),hres
);
2091 args
[0] = (DWORD
)This
->pUnk
;
2096 (*((FARPROC
**)args
[0]))[fdesc
->oVft
/4],
2104 DWORD dwExceptionCode
= GetExceptionCode();
2105 ERR("invoke call failed with exception 0x%08x (%d)\n", dwExceptionCode
, dwExceptionCode
);
2106 if (FAILED(dwExceptionCode
))
2107 hres
= dwExceptionCode
;
2109 hres
= HRESULT_FROM_WIN32(dwExceptionCode
);
2119 for (i
=0;i
<fdesc
->cParams
;i
++) {
2120 ELEMDESC
*elem
= fdesc
->lprgelemdescParam
+i
;
2121 hres
= serialize_param(
2130 xargs
+= _argsize(&elem
->tdesc
, tinfo
);
2132 ERR("Failed to stuballoc param, hres %x\n",hres
);
2137 hres
= xbuf_add (&buf
, (LPBYTE
)&res
, sizeof(DWORD
));
2142 xmsg
->cbBuffer
= buf
.curoff
;
2143 hres
= IRpcChannelBuffer_GetBuffer(rpcchanbuf
, xmsg
, &This
->iid
);
2145 ERR("IRpcChannelBuffer_GetBuffer failed with error 0x%08x\n", hres
);
2148 memcpy(xmsg
->Buffer
, buf
.base
, buf
.curoff
);
2151 for (i
= 0; i
< nrofnames
; i
++)
2152 SysFreeString(names
[i
]);
2154 ITypeInfo_Release(tinfo
);
2155 HeapFree(GetProcessHeap(), 0, args
);
2157 HeapFree(GetProcessHeap(), 0, buf
.base
);
2159 TRACE("returning\n");
2162 FIXME( "not implemented on non-i386\n" );
2167 static LPRPCSTUBBUFFER WINAPI
2168 TMStubImpl_IsIIDSupported(LPRPCSTUBBUFFER iface
, REFIID riid
) {
2169 FIXME("Huh (%s)?\n",debugstr_guid(riid
));
2174 TMStubImpl_CountRefs(LPRPCSTUBBUFFER iface
) {
2175 TMStubImpl
*This
= impl_from_IRpcStubBuffer(iface
);
2178 return This
->ref
; /*FIXME? */
2181 static HRESULT WINAPI
2182 TMStubImpl_DebugServerQueryInterface(LPRPCSTUBBUFFER iface
, LPVOID
*ppv
) {
2187 TMStubImpl_DebugServerRelease(LPRPCSTUBBUFFER iface
, LPVOID ppv
) {
2191 static const IRpcStubBufferVtbl tmstubvtbl
= {
2192 TMStubImpl_QueryInterface
,
2196 TMStubImpl_Disconnect
,
2198 TMStubImpl_IsIIDSupported
,
2199 TMStubImpl_CountRefs
,
2200 TMStubImpl_DebugServerQueryInterface
,
2201 TMStubImpl_DebugServerRelease
2204 static HRESULT WINAPI
2205 PSFacBuf_CreateStub(
2206 LPPSFACTORYBUFFER iface
, REFIID riid
,IUnknown
*pUnkServer
,
2207 IRpcStubBuffer
** ppStub
2214 TRACE("(%s,%p,%p)\n",debugstr_guid(riid
),pUnkServer
,ppStub
);
2216 hres
= _get_typeinfo_for_iid(riid
,&tinfo
);
2218 ERR("No typeinfo for %s?\n",debugstr_guid(riid
));
2222 stub
= CoTaskMemAlloc(sizeof(TMStubImpl
));
2224 return E_OUTOFMEMORY
;
2225 stub
->IRpcStubBuffer_iface
.lpVtbl
= &tmstubvtbl
;
2227 stub
->tinfo
= tinfo
;
2228 stub
->dispatch_stub
= NULL
;
2229 stub
->dispatch_derivative
= FALSE
;
2231 hres
= IRpcStubBuffer_Connect(&stub
->IRpcStubBuffer_iface
,pUnkServer
);
2232 *ppStub
= &stub
->IRpcStubBuffer_iface
;
2233 TRACE("IRpcStubBuffer: %p\n", stub
);
2235 ERR("Connect to pUnkServer failed?\n");
2237 /* if we derive from IDispatch then defer to its stub for some of its methods */
2238 hres
= ITypeInfo_GetTypeAttr(tinfo
, &typeattr
);
2241 if (typeattr
->wTypeFlags
& TYPEFLAG_FDISPATCHABLE
)
2242 stub
->dispatch_derivative
= TRUE
;
2243 ITypeInfo_ReleaseTypeAttr(tinfo
, typeattr
);
2249 static const IPSFactoryBufferVtbl psfacbufvtbl
= {
2250 PSFacBuf_QueryInterface
,
2253 PSFacBuf_CreateProxy
,
2257 /* This is the whole PSFactoryBuffer object, just the vtableptr */
2258 static const IPSFactoryBufferVtbl
*lppsfac
= &psfacbufvtbl
;
2260 /***********************************************************************
2261 * TMARSHAL_DllGetClassObject
2263 HRESULT
TMARSHAL_DllGetClassObject(REFCLSID rclsid
, REFIID iid
,LPVOID
*ppv
)
2265 if (IsEqualIID(iid
,&IID_IPSFactoryBuffer
)) {
2269 return E_NOINTERFACE
;