Tagged Questions
4
votes
2answers
931 views
How does one return a local CComSafeArray to a LPSAFEARRAY output parameter?
I have a COM function that should return a SafeArray via a LPSAFEARRAY* out parameter.
The function creates the SafeArray using ATL's CComSafeArray template class.
My naive implementation uses ...
2
votes
2answers
159 views
Error: “bad variable type” in CComVariant::Copy when iterating through CComSafeArray
CComSafeArray<VARIANT> fields;
hr = _tab_file->get_Fields(fields.GetSafeArrayPtr());
for ( LONG i = fields.GetLowerBound(), ie = fields.GetUpperBound(); i <= ie; ++i)
{
CComVariant ...
1
vote
1answer
279 views
ATL C++ memory leak with safearray of ccomobjects
I find myself in need of help. Now, I'm not all that unfamiliar with C++, but combining it with ATL provides a whole new level of confusion. Anyways, my problem: I (finally) managed to return an array ...
0
votes
1answer
821 views
How do I pass an array of structs (containing std:string or BSTR) from ATL to C#. SafeArray? Variant? COM interface question
I have an ATL COM object that I am using from C#. The interface currently looks like:
interface ICHASCom : IDispatch{
[id(1), helpstring("method Start")] HRESULT Start([in] BSTR name, ...