mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-03 14:44:28 +02:00
22 lines
377 B
ObjectPascal
22 lines
377 B
ObjectPascal
program schemaeditor;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms, frmMain, schemaconns;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
RequireDerivedFormResource:=True;
|
|
Application.Scaled:=True;
|
|
Application.Initialize;
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
Application.Run;
|
|
end.
|
|
|