mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-01 09:43:42 +02:00
24 lines
562 B
ObjectPascal
24 lines
562 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, frmselectconnectiontype,
|
|
lazdatadeskstr, lazdbexport, fraquery, fradata, fraconnection;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Title:='Lazarus Data Desktop';
|
|
Application.Initialize;
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
Application.Run;
|
|
end.
|
|
|