Also alle weiteren typen im record sind:
Delphi-Quellcode:
type
LongString =
record
Len: integer;
Content:
array[1..1024]
of char;
// 1 KB
end;
type
TParameter =
packed record
Pas:
String[255];
Doku:
String[255];
end;
Aufrufen tue ich das ganze mit:
Delphi-Quellcode:
begin
if opendialog.Execute then begin
FunktionenLesen(opendialog.filename, fa);
_update; // array einlesen
end;
end;