2008-10-31 21:18:20 +00:00
|
|
|
program CodeGen;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
{.$MODE Delphi}
|
|
|
|
|
|
|
|
uses
|
|
|
|
Interfaces,
|
2023-02-19 22:58:04 +00:00
|
|
|
LCLVersion,
|
2008-10-31 21:18:20 +00:00
|
|
|
Forms,
|
2023-02-17 16:28:47 +00:00
|
|
|
CodeGenU in 'CODEGENU.pas' {CodeGenFrm}, tponguard;
|
2008-10-31 21:18:20 +00:00
|
|
|
|
|
|
|
|
2023-02-17 16:28:47 +00:00
|
|
|
{$R *.res}
|
|
|
|
|
2008-10-31 21:18:20 +00:00
|
|
|
begin
|
2023-02-19 22:58:04 +00:00
|
|
|
{$IF LCL_FullVersion >= 3000000}
|
2023-02-17 16:28:47 +00:00
|
|
|
Application.Scaled:=True;
|
2023-02-19 22:58:04 +00:00
|
|
|
{$ENDIF}
|
2023-02-17 16:28:47 +00:00
|
|
|
Application.Title:='';
|
2008-10-31 21:18:20 +00:00
|
|
|
Application.Initialize;
|
|
|
|
Application.CreateForm(TCodeGenFrm, CodeGenFrm);
|
|
|
|
Application.Run;
|
|
|
|
end.
|
|
|
|
|
|
|
|
|