20 lines
482 B
ObjectPascal
20 lines
482 B
ObjectPascal
program LogView;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$I SynDprUses.inc} // use FastMM4 on older Delphi, or set FPC threads
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms,
|
|
SynTaskDialog in '..\..\Samples\ThirdPartyDemos\Ondrej\SynTaskDialog4Lazarus\SynTaskDialog.pas',
|
|
LogViewMain in 'LogViewMain.pas' {MainLogView};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
RequireDerivedFormResource:=True;
|
|
Application.Initialize;
|
|
Application.CreateForm(TMainLogView, MainLogView);
|
|
Application.Run;
|
|
end.
|