lazarus-ccr/components/fpexif/examples/metadata_viewer/MetadataViewer.lpr
2017-12-02 18:45:28 +00:00

23 lines
397 B
ObjectPascal

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