lazarus-ccr/components/fpexif/examples/metadata_viewer/MetadataViewer.lpr

23 lines
416 B
ObjectPascal

program MetadataViewer;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, mdvMain, fpeMakerNoteSanyo
{ you can add units after this };
{$R *.res}
begin
RequireDerivedFormResource := True;
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
MainForm.BeforeRun;
Application.Run;
end.