You've already forked lazarus-ccr
22 lines
443 B
ObjectPascal
22 lines
443 B
ObjectPascal
![]() |
program MapViewer_Demo;
|
||
|
|
||
|
{$mode objfpc}{$H+}
|
||
|
|
||
|
uses
|
||
|
{$IFDEF UNIX}cthreads,{$ENDIF}
|
||
|
Interfaces, // this includes the LCL widgetset
|
||
|
Forms, Main, gpslistform, globals
|
||
|
{ you can add units after this };
|
||
|
|
||
|
{$R *.res}
|
||
|
|
||
|
begin
|
||
|
RequireDerivedFormResource:=True;
|
||
|
Application.Scaled:=True;
|
||
|
Application.Initialize;
|
||
|
Application.CreateForm(TMainForm, MainForm);
|
||
|
Application.CreateForm(TGPSListViewer, GPSListViewer);
|
||
|
Application.Run;
|
||
|
end.
|
||
|
|