mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-26 20:40:36 +02:00
21 lines
352 B
ObjectPascal
21 lines
352 B
ObjectPascal
program glazres;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms, glazresmain, DefaultTranslator;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Scaled:=True;
|
|
Application.Initialize;
|
|
Application.CreateForm(TGLazResForm, GLazResForm);
|
|
Application.Run;
|
|
end.
|
|
|