Zitat von
yellomb:
ich möchte aus einer
dll-function ein array of PChar übergeben,
Dafür brauchst Du einen Typ:
Delphi-Quellcode:
type
PPCharArray = ^TPCharArray;
TPCharArray = array of PChar;
function GetFoo(Bar: PChar): TPCharArray;
//...
procedure FreeFoo(var Bar: TPCharArray);