Peter Gerwinski wrote:
Var Go32_Info_Block: AsmName '_go32_info_block' T_Go32_Info_Block;
The syntax of `asmname' has changed. The new syntax reads:
Var Go32_Info_Block: T_Go32_Info_Block; AsmName '_go32_info_block';
Almost. It should be:
Var Go32_Info_Block: T_Go32_Info_Block; AsmName '_go32_info_block'; external;
Frank