2023-11-07 23:38:36 +08:00
|
|
|
unit Rcon;
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
|
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
|
|
|
Dialogs, StdCtrls;
|
|
|
|
|
|
|
|
type
|
|
|
|
TfmRcon = class(TForm)
|
2023-12-02 19:57:04 +08:00
|
|
|
procedure edInputKeyPress(Sender: TObject; var Key: Char);
|
|
|
|
procedure FormClose(Sender: TObject; var Action: TCloseAction);
|
|
|
|
procedure FormShow(Sender: TObject);
|
2023-11-07 23:38:36 +08:00
|
|
|
private
|
|
|
|
{ Private declarations }
|
|
|
|
public
|
|
|
|
{ Public declarations }
|
|
|
|
end;
|
|
|
|
|
|
|
|
var
|
|
|
|
fmRcon: TfmRcon;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
{$R *.dfm}
|
|
|
|
|
2023-12-02 19:57:04 +08:00
|
|
|
procedure TfmRcon.edInputKeyPress(Sender: TObject; var Key: Char);
|
|
|
|
begin
|
|
|
|
// TODO: TfmRcon.edInputKeyPress
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TfmRcon.FormClose(Sender: TObject; var Action: TCloseAction);
|
|
|
|
begin
|
|
|
|
// TODO: TfmRcon.FormClose
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TfmRcon.FormShow(Sender: TObject);
|
|
|
|
begin
|
|
|
|
// TODO: TfmRcon.FormShow
|
|
|
|
end;
|
|
|
|
|
2023-11-07 23:38:36 +08:00
|
|
|
end.
|