ich habe folgendes Problem, dass ich in meinem Programm unter Mac folgende Recordstruktur benötige:
Code: Alles auswählen
NCMConcatProfileSet = record
cmm: OSType;
flags: UInt32;
flagsMask: UInt32;
profileCount: UInt32;
profileSpecs: array [0..1] of NCMConcatProfileSpec; // <-------- Array mit 2 Elemente
end;
in der Lazarus Unit wird es wie folgt definiert:
Code: Alles auswählen
NCMConcatProfileSet = record
cmm: OSType;
flags: UInt32;
flagsMask: UInt32;
profileCount: UInt32;
profileSpecs: array [0..0] of NCMConcatProfileSpec; // <-------- Array mit 1 Element
end;
lg,
jus