lazarus/components/externhelp/externhelp.pas
mattias 007f3d4686 externhelp: fixed showing options
git-svn-id: trunk@23775 -
2010-02-24 15:13:17 +00:00

22 lines
377 B
ObjectPascal

{ This file was automatically created by Lazarus. do not edit!
This source is only used to compile and install the package.
}
unit externhelp;
interface
uses
ExternHelpFrm, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('ExternHelpFrm', @ExternHelpFrm.Register);
end;
initialization
RegisterPackage('ExternHelp', @Register);
end.