sub DoSomething( $\$\$ )
####
my $name;
my $path;
my $count;
DoSomething( $name, \$path, \$count );
####
package MyModule;
require Exporter;
@ISA = qw( Exporter );
@EXPORT = qw( DoSomething );
sub DoSomething( $\$\$ )
####
Type of arg 2 to MyModule::DoSomething must be scalar (not single ref constructor) at D:\dlkusters\vsstools\ss2Sink.pl line 56, near "$path )"
Type of arg 3 to MyModule::DoSomething must be scalar (not single ref constructor) at D:\dlkusters\vsstools\ss2Sink.pl line 56, near "$count )"
Execution of D:\dlkusters\vsstools\ss2Sink.pl aborted due to compilation errors.
####
sub DoSomething( $$$ )