Win32::OLE -- assignment to property of type IUnknown..how?

2008-05-28 Thread Michael Ellery
I have a COM component with a property defined like this (IDL): [propput, id(30), helpstring(property TestSuite)] HRESULT TestSuite([in] IUnknown *pVal); [propget, id(30), helpstring(property TestSuite)] HRESULT TestSuite([out, retval] IUnknown **ppVal); ..basically it gets/sets a dual

RE: Win32::OLE -- assignment to property of type IUnknown..how?

2008-05-28 Thread Jan Dubois
On Wed, 28 May 2008, Michael Ellery wrote: I have a COM component with a property defined like this (IDL): [propput, id(30), helpstring(property TestSuite)] HRESULT TestSuite([in] IUnknown *pVal); Try adding a second line here: [propputref, id(30), helpstring(property TestSuite)]