On Fri, 15 Jul 2005, Silvio a Beccara wrote:
> Hi everybody,
>
> I need to pass two- or three-dimensional dynamic arrays to C libraries from
> FPC. I know this is feasible with one-dimensional arrays, by using a pointer
> to the array: for instance
>
> ---code
> type
> PDouble = ^Double;
>
Hi everybody,
I need to pass two- or three-dimensional dynamic arrays to C libraries from
FPC. I know this is feasible with one-dimensional arrays, by using a pointer
to the array: for instance
---code
type
PDouble = ^Double;
function get_array(a, b: PDouble; size: integer; value: double):
i