mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-09 17:28:15 +02:00
21 lines
353 B
ObjectPascal
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.
|
|
|