lazarus/examples/componentstreaming/componentstreaming.lpr

21 lines
353 B
ObjectPascal

program ComponentStreaming;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms
{ add your units here }, MainUnit;
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TCompStreamDemoForm, CompStreamDemoForm);
Application.Run;
end.