source upload
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
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.
|
Reference in New Issue
Block a user