2022-06-19 21:29:11 +00:00
|
|
|
program CharDefsEditor_Demo;
|
2022-06-15 10:19:47 +00:00
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
uses
|
|
|
|
{$IFDEF UNIX}
|
|
|
|
cthreads,
|
|
|
|
{$ENDIF}
|
|
|
|
{$IFDEF HASAMIGA}
|
|
|
|
athreads,
|
|
|
|
{$ENDIF}
|
|
|
|
Interfaces, // this includes the LCL widgetset
|
2022-06-19 21:29:11 +00:00
|
|
|
Forms, untMain
|
|
|
|
{ you can add units after this };
|
2022-06-15 10:19:47 +00:00
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
|
|
|
begin
|
|
|
|
RequireDerivedFormResource:=True;
|
|
|
|
Application.Scaled:=True;
|
|
|
|
Application.Initialize;
|
|
|
|
Application.CreateForm(TfrmMain, frmMain);
|
|
|
|
Application.Run;
|
|
|
|
end.
|
|
|
|
|