mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-07-08 18:25:55 +02:00
26 lines
572 B
ObjectPascal
26 lines
572 B
ObjectPascal
program lazdatadesktop;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms, frmmain, dicteditor, DBFLaz, frmimportdd,
|
|
frmgeneratesql, RunTimeTypeInfoControls, frmSQLConnect,
|
|
ddfiles, frmselectconnectiontype,
|
|
lazdatadeskstr, fraquery, fradata, fraconnection,
|
|
reglddfeatures;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Scaled:=True;
|
|
Application.Title:='Lazarus Data Desktop';
|
|
Application.Initialize;
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
Application.Run;
|
|
end.
|
|
|