Componentes.Terceros.jcl/official/1.100/devtools/JVCLConvert/JVCLConvert.dpr

18 lines
408 B
ObjectPascal

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.