Registriert seit: 10. Okt 2006
Ort: 's-Hertogenbosch, Die Niederlande
222 Beiträge
RAD-Studio 2010 Arc
|
Re: Funktion aus DLL (in C++ geschrieben) nac Delphi importi
13. Dez 2009, 22:19
arrays in c are not zero indexed so they start with 1 instead of 0 as in Delphi, so you should shorten your arrays by 1,eg:
pPath: array [0 .. 11] of TPoint;
|