I am trying to return an array of interfaces.
here is my IDL code for my ActiveX object
HRESULT GetJumboRollInformation( [in] long lRollsRequested,
[out,size_is( lRollsRequested ),length_is( *plNumberOfRollsReturned )] IMIGRollInformation **pIMIGRollInformation,
[out] long *plNumberOfRollsReturned );
LabVIEW sees pIMIGRollInformation as a single interface. Do I need to go to a safearray?