On Friday 18 June 2004 15:40, Igor Marnat wrote:
But how can I get these values of C preprocessor definitions in my Pascal program?
Please note, that "asmname" is deprecated.
In C
int foo = FOO_CONST;
where FOO_CONST is defined somewhere else.
In Pascal:
var MyFoo: Integer; attribute (name='foo') ; external; (untested)
Eike