Skip to content

Commit

Permalink
Sync from PC
Browse files Browse the repository at this point in the history
  • Loading branch information
sebaxakerhtc authored Nov 26, 2021
1 parent 9082ce3 commit 78a57e3
Show file tree
Hide file tree
Showing 15 changed files with 2,537 additions and 0 deletions.
Binary file added src-RDP_C&C/LicenseUnit.dcu
Binary file not shown.
64 changes: 64 additions & 0 deletions src-RDP_C&C/LicenseUnit.dfm
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
object LicenseForm: TLicenseForm
Left = 0
Top = 0
BorderIcons = []
BorderStyle = bsDialog
Caption = 'License Agreement'
ClientHeight = 346
ClientWidth = 539
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
Position = poOwnerFormCenter
PixelsPerInch = 96
TextHeight = 13
object mText: TMemo
Left = 8
Top = 8
Width = 523
Height = 297
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
ReadOnly = True
ScrollBars = ssVertical
TabOrder = 0
WordWrap = False
end
object bAccept: TButton
Left = 91
Top = 311
Width = 150
Height = 30
Caption = '&Accept'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ModalResult = 1
ParentFont = False
TabOrder = 1
end
object bDecline: TButton
Left = 292
Top = 311
Width = 150
Height = 30
Caption = '&Decline'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ModalResult = 2
ParentFont = False
TabOrder = 2
end
end
43 changes: 43 additions & 0 deletions src-RDP_C&C/LicenseUnit.pas
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
Copyright 2014 Stas'M Corp.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
}

unit LicenseUnit;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;

type
TLicenseForm = class(TForm)
mText: TMemo;
bAccept: TButton;
bDecline: TButton;
private
{ Private declarations }
public
{ Public declarations }
end;

var
LicenseForm: TLicenseForm;

implementation

{$R *.dfm}

end.
Binary file added src-RDP_C&C/MainUnit.dcu
Binary file not shown.
Loading

0 comments on commit 78a57e3

Please sign in to comment.