- or download this
my @test;
my $reftest = \@test;
add_nir(1,4,\$reftest);
- or download this
int add_nir(int x, int y, AV** perlList )
{
...
...
}
- or download this
int add_nir(int x, int y, AV* perlList )
- or download this
newAV()
- or download this
my @test;
add_nir(1,4,\@test);
...
SV* perlItem=newSViv(2);
av_push(perlList, perlItem);
...}
- or download this
Can't locate auto/PM_wed/add_nir.al in @INC .....