shengchengwenjian.pas:
unit shengchengwenjian;interfaceuses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;  type userinfo=record...
end;
type
  TForm1 = class(TForm)
    Button1: TButton;    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;
var
  Form1: TForm1;implementation
uses
formatchange1;{$R *.dfm}unit formatchange1;interface
function  formatchange(  uinfo:userinfo):Integer ;stdcall;
implementation
  function  formatchange; external 'test1.DLL'name  'formatchange';
end.
 [Error] formatchange1.pas(10): Undeclared identifier: 'userinfo'
[Fatal Error] shengchengwenjian.pas(77): Could not compile used unit 'formatchange1.pas'
怎么办