Files
lazarus-ccr/components/flashfiler/examples/LazEmbeddedServer/LazFFEmbedded.lpr
2016-12-07 13:31:59 +00:00

22 lines
384 B
ObjectPascal

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