W
weixj2003ld
Unregistered / Unconfirmed
GUEST, unregistred user!
过程声明
procedure Send_XT_1(var A,B:integer;var C:Longword);
过程实现
procedure Form1.Send_XT_1(var A,B:integer;var C:Longword);
begin
end;
过程调用
Send_XT_1(34,4,455);
但是运行出现:
[Error] Unit1.pas(34): Types of actual and formal var parameters must be identical
procedure Send_XT_1(var A,B:integer;var C:Longword);
过程实现
procedure Form1.Send_XT_1(var A,B:integer;var C:Longword);
begin
end;
过程调用
Send_XT_1(34,4,455);
但是运行出现:
[Error] Unit1.pas(34): Types of actual and formal var parameters must be identical