I want to initialise an array like this -
Const MyArray : Array[0..0] Of TGUID = (IInterface);
But it results in -
[DCC Err
Another idea: The following compiles:
procedure Blah(const MyArray: array of TGUID); begin //... end; Blah([IInterface, IDispatch]);
Maybe you can use this approach.