Repository URL to install this package:
Version:
2.0.10 ▾
|
lazarus-project
/
usr
/
share
/
lazarus
/
2.0.10
/
components
/
anchordocking
/
minide
/
miniide1.lpr
|
---|
program miniide1;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, Unit1, Controls, LazUTF8;
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TMainIDE, MainIDE);
if (Paramcount>0) then
MainIDE.LoadLayout(ParamStrUTF8(1));
Application.Run;
end.