if the vector has 5 elements).
Anyone have experience with this sort of thing?
Thanks,
Robin Cowan
Sample below:
This one works fine:
library Test1Lib;
type
pA=^integer;
procedure simple(x:pA); cdecl;
var i1,i2:integer;
begin
x^:=x^*2;
end;
exports simple;
begin
end.
This one
when the library is not loaded.
Any hints about where to look to solve this problem would be much
appreciated.
Robin Cowan
Here is the simple Pascal code:
Running on a Macintosh Intel, OS X 10.5, R 2.9.1
{$MODE DELPHI}
library LearningLib;
const num=75;
type
array1= array[1..2,1..num] of