git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.jvcl@17 7f62d464-2af8-f54e-996c-e91b33f51cbe
18 lines
408 B
ObjectPascal
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.
|