Componentes.Terceros.jvcl/official/3.32/devtools/InstallerTests/DelphiPkgInstaller/Uninstall/DelphiPkgUninstall.dpr

20 lines
407 B
ObjectPascal

program DelphiPkgUninstall;
uses
Forms,
Main in 'Main.pas' {FormMain},
Utils in '..\..\JVCLInstall\Utils.pas',
CmdLineUtils in '..\..\JVCLInstall\CmdLineUtils.pas',
DelphiData in '..\..\JVCLInstall\DelphiData.pas';
{$E bin}
{$R *.res}
begin
Application.Initialize;
Application.Title := 'Uninstall';
Application.CreateForm(TFormMain, FormMain);
Application.Run;
end.