My question is, how can i set up a constant of a special type with several values ?

<code>
TYPE
TDesc = record
a,b,c : dword;
end;

// typed constant declaration identifier : type = typed constant
CONST
abc : TDesc = ( a:dword=10
b:dword=11,
c:dword=12 );
</code>