PerlCtrl and C++

A

AJ

How come that a dll created with Perlctrl and afther that successfully
registered with regsvr32 does work with a sample VBscript but does not
work with c++ or vc++.

My perl code is:

package Hello;

sub Hello {
return "Hello Alex";

}

=pod

=begin PerlCtrl

%TypeLib = (
PackageName => 'Hello',

# DO NOT edit the next 3 lines.
TypeLibGUID => '{E91B25C6-2B15-11D2-B466-0800365DA902}',
ControlGUID => '{E91B25C7-2B15-11D2-B466-0800365DA902}',
DispInterfaceIID=> '{E91B25C8-2B15-11D2-B466-0800365DA902}',

ControlName => 'HelloWorldControl',
ControlVer => 1,
ProgID => 'Hello.World',
DefaultMethod => '',

Methods => {
'Hello' => {
RetType => VT_BSTR,
TotalParams => 0,
NumOptionalParams => 0,
ParamList =>[ ]
},
}, # end of 'Methods'

Properties => {
}
, # end of 'Properties'
); # end of %TypeLib

=end PerlCtrl

=cut

How can i call this function from c++ or vc++?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,007
Latest member
obedient dusk

Latest Threads

Top