Zitat von
Mattze:
Hallo,
meine Quelle sieht so aus:
Delphi-Quellcode:
type FG = array[0..2] of int64; //Global definiert
{0 - Größe, 1 - Anzahl Dateien, 2 - Anzahl unterverzeichnisse}
Was ist denn das für ein Konstrukt? Wie wäre es mit einem Record:
Delphi-Quellcode:
type
TFoo = record
Size: Int64;
NumFiles: Integer;
NumFolders: Integer;
end;