Adriaan van Os wrote:
Is it correct that an external variable can be declared in GPC as follows:
var eV: integer; external; asmname 'eV';
Yes -- but in the next release it will be
var eV: integer; external name 'eV';
Is there a similar construct to declare external constants ('extern const' in C) ?
In the next release:
var eV: integer; attribute (const); external name 'eV';
But these are typed constants -- neither untyped constants that can be used as `case' selectors nor BP's typed "constants" which are in fact variables.
Frank