Guest_imported
New member
- Jan 1, 1970
- 0
I am using perl to create an ActiveX object, then call methods on it. If I pass a string from perl, it will be received by the ActiveX component as a BSTR. This is fine, I can easily make use of the string when inside the C++ context, and return it back to perl.
If I pass a perl hash from perl, how will it be received by the ActiveX component?
my $obj = $Server->CreateObject('MyObject.Test');
$obj->doStuff('name' => 'value');
If I pass a perl hash from perl, how will it be received by the ActiveX component?
my $obj = $Server->CreateObject('MyObject.Test');
$obj->doStuff('name' => 'value');