-
-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathgoverlay.lpr
More file actions
executable file
·40 lines (28 loc) · 832 Bytes
/
Copy pathgoverlay.lpr
File metadata and controls
executable file
·40 lines (28 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
program goverlay;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}
cthreads, // <--- Agora será sempre incluído no Linux
{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, overlayunit, aboutunit, blacklistUnit, howto;
{$R *.res}
{$if defined(CPUAARCH64) and defined(LINUX)}
procedure Dummy_libc_csu_init; cdecl; public name '__libc_csu_init';
begin
end;
procedure Dummy_libc_csu_fini; cdecl; public name '__libc_csu_fini';
begin
end;
{$endif}
begin
RequireDerivedFormResource:=True;
Application.Scaled:=True;
Application.Title:='Goverlay';
Application.Initialize;
Application.CreateForm(Tgoverlayform, goverlayform);
Application.CreateForm(TaboutForm, aboutForm);
Application.CreateForm(TblacklistForm, blacklistForm);
Application.CreateForm(ThowtoForm, howtoForm);
Application.Run;
end.