www.pudn.com > LANUpdate_Lite_v0.1_EN_src.zip > LANUpdate.~dpr
program Project1;
uses
Forms,
Unit1 in 'Unit1.pas' {Form1},
About in 'About.pas' {AboutBox},
Config in 'config.pas' {Configure};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'LANUpdate';
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TAboutBox, AboutBox);
Application.CreateForm(TConfigure, Configure);
Application.Run;
end.