
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1027 8e941d3f-bd1b-0410-a28a-d453659cc2b4
25 lines
586 B
ObjectPascal
Executable File
25 lines
586 B
ObjectPascal
Executable File
{ 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.
|