Hello guru's,
I have just started working win32::API module. On executing below code..
use strict;
use warnings;
use Win32::API;
my $iAddNum = Win32::API->new('Arithmetic','addNumbers','NN','N');
my $return = $iAddNum->Call(10,15);
print "Sum: ",$return;
I get an error "Cant call method "Call" on undefined value at add.pl line 6.
can you please help me in understanding, why this error pop's up and also give solution to it?
thanks in advance