2017-12-02 18:45:28 +00:00
|
|
|
program MetadataViewer;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
uses
|
|
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
|
|
cthreads,
|
|
|
|
{$ENDIF}{$ENDIF}
|
|
|
|
Interfaces, // this includes the LCL widgetset
|
2019-01-26 00:15:13 +00:00
|
|
|
Forms, mdvMain, fpeMakerNoteSanyo
|
2017-12-02 18:45:28 +00:00
|
|
|
{ you can add units after this };
|
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
|
|
|
begin
|
|
|
|
RequireDerivedFormResource := True;
|
|
|
|
Application.Initialize;
|
|
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
|
|
MainForm.BeforeRun;
|
|
|
|
Application.Run;
|
|
|
|
end.
|
|
|
|
|