|
1 |
| -{ |
2 |
| - Copyright 2014 Stas'M Corp. |
3 |
| -
|
4 |
| - Licensed under the Apache License, Version 2.0 (the "License"); |
5 |
| - you may not use this file except in compliance with the License. |
6 |
| - You may obtain a copy of the License at |
7 |
| -
|
8 |
| - http://www.apache.org/licenses/LICENSE-2.0 |
9 |
| -
|
10 |
| - Unless required by applicable law or agreed to in writing, software |
11 |
| - distributed under the License is distributed on an "AS IS" BASIS, |
12 |
| - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
13 |
| - See the License for the specific language governing permissions and |
14 |
| - limitations under the License. |
15 |
| -} |
16 |
| - |
17 |
| -program RDPCheck; |
18 |
| - |
19 |
| -uses |
20 |
| - Forms, |
21 |
| - MainUnit in 'MainUnit.pas' {Frm}; |
22 |
| - |
23 |
| -{$R *.res} |
24 |
| - |
25 |
| -begin |
26 |
| - Application.Initialize; |
27 |
| - Application.MainFormOnTaskbar := True; |
28 |
| - Application.Title := 'Local RDP Checker'; |
29 |
| - Application.CreateForm(TFrm, Frm); |
30 |
| - Application.Run; |
31 |
| -end. |
| 1 | +{ |
| 2 | + Copyright 2014 Stas'M Corp. |
| 3 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | + you may not use this file except in compliance with the License. |
| 5 | + You may obtain a copy of the License at |
| 6 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | + Unless required by applicable law or agreed to in writing, software |
| 8 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 9 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 10 | + See the License for the specific language governing permissions and |
| 11 | + limitations under the License. |
| 12 | +} |
| 13 | +program RDPCheck; |
| 14 | +uses |
| 15 | + Forms, |
| 16 | + MainUnit in 'MainUnit.pas' {Frm}, |
| 17 | + Vcl.Themes, |
| 18 | + Vcl.Styles; |
| 19 | + |
| 20 | +{$R *.res} |
| 21 | +begin |
| 22 | + Application.Initialize; |
| 23 | + Application.MainFormOnTaskbar := True; |
| 24 | + Application.Title := 'Local RDP Checker'; |
| 25 | + Application.CreateForm(TFrm, Frm); |
| 26 | + Application.CreateForm(TFrm, Frm); |
| 27 | + Application.Run; |
| 28 | +end. |
0 commit comments