
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@9 8e941d3f-bd1b-0410-a28a-d453659cc2b4
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.
|
|
|