18 lines
564 B
ObjectPascal
18 lines
564 B
ObjectPascal
|
|
program ThreadExceptExample;
|
||
|
|
|
||
|
|
uses
|
||
|
|
Forms,
|
||
|
|
JclOTAResources in '..\..\..\..\experts\common\JclOTAResources.pas',
|
||
|
|
JclOTAConsts in '..\..\..\..\experts\common\JclOTAConsts.pas',
|
||
|
|
JclIdeThreadStatus in '..\..\..\..\experts\debug\threadnames\JclIdeThreadStatus.pas',
|
||
|
|
ThreadExpertSharedNames in '..\..\..\..\experts\debug\threadnames\ThreadExpertSharedNames.pas',
|
||
|
|
ThreadExceptDemoMain in 'ThreadExceptDemoMain.pas' {MainForm};
|
||
|
|
|
||
|
|
{$R *.res}
|
||
|
|
|
||
|
|
begin
|
||
|
|
Application.Initialize;
|
||
|
|
Application.CreateForm(TMainForm, MainForm);
|
||
|
|
Application.Run;
|
||
|
|
end.
|