Componentes.Terceros.jvcl/official/3.32/devtools/JVCLConvert/JVCLConvert.dpr

18 lines
408 B
ObjectPascal
Raw Normal View History

program JVCLConvert;
uses
Forms,
fJvclConverterMain in 'fJvclConverterMain.pas' {frmMain},
FastTime in 'FastTime.pas',
fAboutMe in 'fAboutMe.pas' {frmAboutMe},
OptionsFrm in 'OptionsFrm.pas' {frmOptions},
JVCLConvertUtils in 'JVCLConvertUtils.pas';
{$R *.RES}
begin
Application.Title := 'JVCL Converter';
Application.CreateForm(TfrmMain, frmMain);
Application.Run;
end.