mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-02 10:32:34 +02:00
24 lines
563 B
ObjectPascal
24 lines
563 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, SQLDBLaz, lazdatadict, RunTimeTypeInfoControls, frmSQLConnect,
|
|
ddfiles, conneditor, datapanel, querypanel, frmselectconnectiontype,
|
|
lazdatadeskstr, lazdbexport;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Title:='Lazarus Data Desktop';
|
|
Application.Initialize;
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
Application.Run;
|
|
end.
|
|
|