You've already forked lazarus-ccr
32 lines
381 B
ObjectPascal
32 lines
381 B
ObjectPascal
![]() |
unit AboutUnit;
|
||
|
|
||
|
{$mode objfpc}{$H+}
|
||
|
|
||
|
interface
|
||
|
|
||
|
uses
|
||
|
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, Buttons;
|
||
|
|
||
|
type
|
||
|
|
||
|
{ TAboutForm }
|
||
|
|
||
|
TAboutForm = class(TForm)
|
||
|
BitBtn1: TBitBtn;
|
||
|
private
|
||
|
{ private declarations }
|
||
|
public
|
||
|
{ public declarations }
|
||
|
end;
|
||
|
|
||
|
var
|
||
|
AboutForm: TAboutForm;
|
||
|
|
||
|
implementation
|
||
|
|
||
|
initialization
|
||
|
{$I aboutunit.lrs}
|
||
|
|
||
|
end.
|
||
|
|