I have always understood that const was basically the same as var, in that it passed parameters by reference. However, in the JEDI directx headers, often, for example:
Code:
DWORD dwFlags
has been translated to:
[pascal]const dwFlags: LongWord[/pascal]
whereas I would have translated it to:
[pascal]dwFlags: LongWord[/pascal]

Am I missing something?