Hi,
currently an argument pointer for a function doesn't work if the type is
'int'. For illustration run the following:
<script>
function void check1(scalar *a)
print a
end function
function void check2(int a)
print a
end function
function void check3(int *a)
print a
end function
</script>
which gives for me:
? function void check1(scalar *a)
print a
end function
? function void check2(int a)
print a
end function
? function void check3(int *a)
Unrecognized data type 'int *'
I guess that's a bug since I don't see any reason why it should work
with 'scalar' but not with 'int'?
thanks,
sven