37 lines
631 B
ObjectPascal
37 lines
631 B
ObjectPascal
unit APIhooktemplatesettingsfrm;
|
|
|
|
{$MODE Delphi}
|
|
|
|
interface
|
|
|
|
uses
|
|
LCLIntf, Messages, SysUtils, Classes, Graphics, Controls, Forms,
|
|
Dialogs, StdCtrls, LResources;
|
|
|
|
type
|
|
TfrmAPIhookTemplateSettings = class(TForm)
|
|
Edit1: TEdit;
|
|
Edit2: TEdit;
|
|
Edit3: TEdit;
|
|
Label1: TLabel;
|
|
Label2: TLabel;
|
|
Label3: TLabel;
|
|
Label4: TLabel;
|
|
Label6: TLabel;
|
|
Button1: TButton;
|
|
Button2: TButton;
|
|
Label5: TLabel;
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
implementation
|
|
|
|
|
|
initialization
|
|
{$i APIhooktemplatesettingsfrm.lrs}
|
|
|
|
end.
|