mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-10 21:02:38 +02:00
20 lines
377 B
ObjectPascal
20 lines
377 B
ObjectPascal
program WideStringStreaming;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms
|
|
{ add your units here }, MainUnit;
|
|
|
|
begin
|
|
Application.Title:='componentstreaming';
|
|
Application.Initialize;
|
|
Application.CreateForm(TStreamDemoForm, StreamDemoForm);
|
|
Application.Run;
|
|
end.
|
|
|