mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-07-23 04:45:59 +02:00

Fixed bug #21326 - PgUp PgDown etc didn't do anything. Now up, down left, right, space, return, pgup and pgdown are handled. git-svn-id: trunk@40505 -
24 lines
499 B
ObjectPascal
24 lines
499 B
ObjectPascal
{ This file was automatically created by Lazarus. Do not edit!
|
|
This source is only used to compile and install the package.
|
|
}
|
|
|
|
unit TurboPowerIPro;
|
|
|
|
interface
|
|
|
|
uses
|
|
IpAnim, IpConst, Ipfilebroker, IpHtml, IpHtmlPv, IpMsg, IpStrms, IpUtils,
|
|
IpHtmlTabList, LazarusPackageIntf;
|
|
|
|
implementation
|
|
|
|
procedure Register;
|
|
begin
|
|
RegisterUnit('Ipfilebroker', @Ipfilebroker.Register);
|
|
RegisterUnit('IpHtml', @IpHtml.Register);
|
|
end;
|
|
|
|
initialization
|
|
RegisterPackage('TurboPowerIPro', @Register);
|
|
end.
|