Hallo,
das Beste ist Du erstellst Dir einen Typen für das Array;
Delphi-Quellcode:
Type
TMyArray = Array[0..9] of Integer;
TDynIntArray = Array of Integer;
...
function MyFunction(aArray : TMyArray);
...
function MyFunction(aArray : TDynIntArray);
...