uses
  SysUtils,
  Classes,windows;{$R *.res}function PlusNum(X,Y:Integer):Integer;StdCall;
begin
Result:=X+Y;
end;
function MinusNum(X,Y:Integer):Integer;StdCall;
begin
Result:=x-y;
end;
exports
PlusNum index 1,
MinusNum index 2;
begin
end.显示:
[Warning] Project2.dpr(29): Symbol 'INDEX' is specific to a platform
[Warning] Project2.dpr(29): Symbol 'INDEX' is specific to a platform
请问众高手为什么啊