mirror of https://github.com/red-prig/fpPS4.git
26 lines
409 B
Plaintext
26 lines
409 B
Plaintext
![]() |
program nid_gui_test;
|
||
|
|
||
|
{$mode objfpc}{$H+}
|
||
|
|
||
|
uses
|
||
|
{$IFDEF UNIX}
|
||
|
cthreads,
|
||
|
{$ENDIF}
|
||
|
{$IFDEF HASAMIGA}
|
||
|
athreads,
|
||
|
{$ENDIF}
|
||
|
Interfaces, // this includes the LCL widgetset
|
||
|
Forms, main
|
||
|
{ you can add units after this };
|
||
|
|
||
|
{$R *.res}
|
||
|
|
||
|
begin
|
||
|
RequireDerivedFormResource:=True;
|
||
|
Application.Scaled:=True;
|
||
|
Application.Initialize;
|
||
|
Application.CreateForm(TfrmMain, frmMain);
|
||
|
Application.Run;
|
||
|
end.
|
||
|
|