-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpadxml.lpr
More file actions
40 lines (35 loc) · 1013 Bytes
/
padxml.lpr
File metadata and controls
40 lines (35 loc) · 1013 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
40
//-----------------------------------------------------------------------------------
// PadXml © 2025 by Alexander Tverskoy
// https://github.com/plaintool/padxml
// Licensed under the MIT License
// You may obtain a copy of the License at https://opensource.org/licenses/MIT
//-----------------------------------------------------------------------------------
program padxml;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}
cthreads,
{$ENDIF}
{$IFDEF HASAMIGA}
athreads,
{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms,
mainunit,
formabout,
formdonate;
{$R *.res}
begin
RequireDerivedFormResource := True;
Application.Title:='PadXml';
Application.Scaled:=True;
{$PUSH}
{$WARN 5044 OFF}
Application.MainFormOnTaskbar := True;
{$POP}
Application.Initialize;
Application.CreateForm(TformPadXml, formPadXml);
Application.CreateForm(TformAboutPadXml, formAboutPadXml);
Application.CreateForm(TformDonatePadXml, formDonatePadXml);
Application.Run;
end.