|
1 |
| -(******************************************************************************) |
2 |
| -(* *) |
3 |
| -(* Author : Uwe Schächterle (Corpsman) *) |
4 |
| -(* *) |
5 |
| -(* This file is part of FPC understand *) |
6 |
| -(* *) |
7 |
| -(* See the file license.md, located under: *) |
8 |
| -(* https://github.com/PascalCorpsman/Software_Licenses/blob/main/license.md *) |
9 |
| -(* for details about the license. *) |
10 |
| -(* *) |
11 |
| -(* It is not allowed to change or remove this text from any *) |
12 |
| -(* source file of the project. *) |
13 |
| -(* *) |
14 |
| -(******************************************************************************) |
15 |
| -Program FPC_Understand; |
16 |
| - |
17 |
| -{$MODE objfpc}{$H+} |
18 |
| - |
19 |
| -Uses |
20 |
| -{$IFDEF UNIX} |
21 |
| - cthreads, |
22 |
| -{$ENDIF} |
23 |
| -{$IFDEF HASAMIGA} |
24 |
| - athreads, |
25 |
| -{$ENDIF} |
26 |
| - Interfaces, // this includes the LCL widgetset |
27 |
| - Forms, tachartlazaruspkg, Unit1, Unit2, Unit3, Unit4, Unit5, Unit6, Unit7, |
28 |
| - Unit8, Unit9, Unit10, Unit11, Unit12, unit13; |
29 |
| - |
30 |
| -{$R *.res} |
31 |
| - |
32 |
| -Begin |
33 |
| - RequireDerivedFormResource := True; |
34 |
| - Application.Scaled := True; |
35 |
| - Application.Initialize; |
36 |
| - Application.CreateForm(TForm1, Form1); |
37 |
| - Application.CreateForm(TForm2, Form2); |
38 |
| - Application.CreateForm(TForm3, Form3); |
39 |
| - Application.CreateForm(TForm4, Form4); |
40 |
| - Application.CreateForm(TForm5, Form5); |
41 |
| - Application.CreateForm(TForm6, Form6); |
42 |
| - Application.CreateForm(TForm7, Form7); |
43 |
| - Application.CreateForm(TForm8, Form8); |
44 |
| - Application.CreateForm(TForm9, Form9); |
45 |
| - Application.CreateForm(TForm10, Form10); |
46 |
| - Application.CreateForm(TForm11, Form11); |
47 |
| - Application.CreateForm(TForm12, Form12); |
48 |
| - Application.CreateForm(TForm13, Form13); |
49 |
| - Application.Run; |
50 |
| -End. |
51 |
| - |
| 1 | +(******************************************************************************) |
| 2 | +(* *) |
| 3 | +(* Author : Uwe Schächterle (Corpsman) *) |
| 4 | +(* *) |
| 5 | +(* This file is part of FPC understand *) |
| 6 | +(* *) |
| 7 | +(* See the file license.md, located under: *) |
| 8 | +(* https://github.com/PascalCorpsman/Software_Licenses/blob/main/license.md *) |
| 9 | +(* for details about the license. *) |
| 10 | +(* *) |
| 11 | +(* It is not allowed to change or remove this text from any *) |
| 12 | +(* source file of the project. *) |
| 13 | +(* *) |
| 14 | +(******************************************************************************) |
| 15 | +Program FPC_Understand; |
| 16 | + |
| 17 | +{$MODE objfpc}{$H+} |
| 18 | + |
| 19 | +Uses |
| 20 | +{$IFDEF UNIX} |
| 21 | + cthreads, |
| 22 | +{$ENDIF} |
| 23 | +{$IFDEF HASAMIGA} |
| 24 | + athreads, |
| 25 | +{$ENDIF} |
| 26 | + Interfaces, // this includes the LCL widgetset |
| 27 | + Forms, tachartlazaruspkg, Unit1, Unit2, Unit3, Unit4, Unit5, Unit6, Unit7, |
| 28 | + Unit8, Unit9, Unit10, Unit11, Unit12, unit13; |
| 29 | + |
| 30 | +{$R *.res} |
| 31 | + |
| 32 | +Begin |
| 33 | + RequireDerivedFormResource := True; |
| 34 | + Application.Scaled := True; |
| 35 | + Application.Initialize; |
| 36 | + Application.CreateForm(TForm1, Form1); |
| 37 | + Application.CreateForm(TForm2, Form2); |
| 38 | + Application.CreateForm(TForm3, Form3); |
| 39 | + Application.CreateForm(TForm4, Form4); |
| 40 | + Application.CreateForm(TForm5, Form5); |
| 41 | + Application.CreateForm(TForm6, Form6); |
| 42 | + Application.CreateForm(TForm7, Form7); |
| 43 | + Application.CreateForm(TForm8, Form8); |
| 44 | + Application.CreateForm(TForm9, Form9); |
| 45 | + Application.CreateForm(TForm10, Form10); |
| 46 | + Application.CreateForm(TForm11, Form11); |
| 47 | + Application.CreateForm(TForm12, Form12); |
| 48 | + Application.CreateForm(TForm13, Form13); |
| 49 | + Application.Run; |
| 50 | +End. |
| 51 | + |
0 commit comments