unit APIhooktemplatesettingsfrm; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; 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 {$R *.dfm} end.