2011-01-14 13:59:51 +00:00
|
|
|
program fpvviewer;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
uses
|
|
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
|
|
cthreads,
|
|
|
|
{$ENDIF}{$ENDIF}
|
|
|
|
Interfaces, // this includes the LCL widgetset
|
2013-09-12 15:09:41 +00:00
|
|
|
Forms, fpvv_mainform, dxftokentotree, fpvv_drawer, fpvectorialpkg,
|
|
|
|
printer4lazarus, CoreConRec;
|
2011-01-14 13:59:51 +00:00
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
|
|
|
begin
|
|
|
|
Application.Initialize;
|
2011-01-14 14:45:47 +00:00
|
|
|
Application.CreateForm(TfrmFPVViewer, frmFPVViewer);
|
2011-01-14 13:59:51 +00:00
|
|
|
Application.Run;
|
|
|
|
end.
|
|
|
|
|