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.
|