You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8736 8e941d3f-bd1b-0410-a28a-d453659cc2b4
40 lines
630 B
ObjectPascal
40 lines
630 B
ObjectPascal
unit EXPROTU;
|
|
|
|
interface
|
|
|
|
uses
|
|
SysUtils, Classes, Controls, Forms, Dialogs, StdCtrls, Buttons, ExtCtrls,
|
|
ogproexe;
|
|
|
|
type
|
|
|
|
{ TForm1 }
|
|
|
|
TForm1 = class(TForm)
|
|
Bevel1: TBevel;
|
|
CloseBtn: TBitBtn;
|
|
Info: TLabel;
|
|
StatusLbl: TLabel;
|
|
OgProtectExe1: TOgProtectExe;
|
|
procedure OgProtectExe1Checked(Sender: TObject; Status: TExeStatus);
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
Form1: TForm1;
|
|
|
|
implementation
|
|
|
|
{$R *.lfm}
|
|
|
|
procedure TForm1.OgProtectExe1Checked(Sender: TObject; Status: TExeStatus);
|
|
begin
|
|
StatusLbl.Caption := ExeStatusToStr(Status);
|
|
end;
|
|
|
|
|
|
end.
|