Código Delphi
[-]
unit LaDelRecord;
Interface
Type MiRecord=Record
i:integer;
s:String;
end;
Implementation
end.
Código Delphi
[-]
Unit LaQueUsaElRecord;
uses LaDelRecord;
Interface
Procedure FuncionQueUsaElRecord(var UnRecord:MiRecord);
Implementation
Procedure FuncionQueUsaElRecord(var UnRecord:MiRecord);
Begin
end;
end.