mirror of https://gitlab.com/basile.b/dexed.git
20 lines
391 B
Plaintext
20 lines
391 B
Plaintext
program coedit;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Interfaces, Forms, lazcontrols, runtimetypeinfocontrols, ce_libman, ce_tools,
|
|
ce_dcd, ce_observer, ce_main, ce_writableComponent, ce_options, ce_symstring;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TCEMainForm, CEMainForm);
|
|
Application.Run;
|
|
end.
|
|
|