Heißt das jetzt, daß ich überall machen muß:
Delphi-Quellcode:
{$IFDEF WIN32}
property Items[
Index: integer]: TSupBook
read GetItems;
default;
{$ELSEIF WIN64}
property Items[
Index: NativeInt]: TSupBook
read GetItems;
default;
{$ENDIF}
Oder kann pauschal immer
property Items[Index: NativeInt]: TSupBook read GetItems; default;
verwendet werden?