You've already forked lazarus-ccr
aarre
applications
bindings
components
examples
bluetooth
germesorders
noise
process
processdemo.lpi
processdemo.lpr
processdemomainform.lfm
processdemomainform.lrs
processdemomainform.pas
serial_filesend
lclbindings
wst
16 lines
287 B
ObjectPascal
16 lines
287 B
ObjectPascal
![]() |
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.
|
||
|
|