Registriert seit: 18. Nov 2015
Ort: Kehl
678 Beiträge
Delphi 11 Alexandria
|
AW: C-dll Speicheradressen
31. Okt 2017, 13:24
Code:
"int jaco( double x[], double * df[])
das ist auf Delphi Seite eigentlich
Delphi-Quellcode:
type
pDoubleArray = ^TdoubleArray;
tDoubleArray = array[0..0] of Double;
function Jaco(x : tDoubleArray; df : pDoubleArray) : integer; cdecl;
Fritz Westermann
|