Componentes.Terceros.jcl/official/1.96/examples/windows/debug/threadexcept/ThreadExceptExample.dpr

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.