You've already forked lazarus-ccr
25 lines
586 B
ObjectPascal
25 lines
586 B
ObjectPascal
![]() |
{ This file was automatically created by Lazarus. do not edit!
|
||
|
This source is only used to compile and install the package.
|
||
|
}
|
||
|
|
||
|
unit GeckoComponents;
|
||
|
|
||
|
interface
|
||
|
|
||
|
uses
|
||
|
GeckoBrowser, GeckoChromeWindow, GeckoInit, nsCID,
|
||
|
nsConsts, nsEnumerators, nsError, nsErrorUtils, nsGeckoStrings, nsInit,
|
||
|
nsMemory, nsNetUtil, nsStream, nsTypes, nsXPCOM, nsXPCOMGlue, nsXRE,
|
||
|
nsXPCOM_STD19, LazarusPackageIntf;
|
||
|
|
||
|
implementation
|
||
|
|
||
|
procedure Register;
|
||
|
begin
|
||
|
RegisterUnit('GeckoBrowser', @GeckoBrowser.Register);
|
||
|
end;
|
||
|
|
||
|
initialization
|
||
|
RegisterPackage('GeckoComponents', @Register);
|
||
|
end.
|