1
0
Files
aarre
applications
bindings
components
examples
bluetooth
germesorders
noise
process
processdemo.lpi
processdemo.lpr
processdemomainform.lfm
processdemomainform.lrs
processdemomainform.pas
serial_filesend
lclbindings
wst
lazarus-ccr/examples/process/processdemo.lpr

16 lines
287 B
ObjectPascal
Raw Normal View History

program ProcessDemo;
{$mode objfpc}{$H+}
uses
Interfaces, // this includes the LCL widgetset
Forms
{ add your units here }, ProcessDemoMainForm;
begin
Application.Initialize;
Application.CreateForm(TMultipleProcessDemoForm,MultipleProcessDemoForm);
Application.Run;
end.