8a71ebf5bc
git-svn-id: https://svn.code.sf.net/p/kolmck/code@67 91bb2d04-0c0c-4d2d-88a5-bbb6f4c1fa07
21 lines
331 B
ObjectPascal
21 lines
331 B
ObjectPascal
unit KOLDHTML;
|
|
|
|
interface
|
|
|
|
uses KOL, DHTMLEDLib_TLBKOL;
|
|
|
|
type
|
|
|
|
TDHTMLEDIT = DHTMLEDLib_TLBKOL.PDHTMLEDIT;
|
|
PDHTMLEDIT = DHTMLEDLib_TLBKOL.PDHTMLEDIT;
|
|
|
|
function NewDHTMLEDIT(AOwner: PControl): PDHTMLEDIT;
|
|
|
|
implementation
|
|
|
|
function NewDHTMLEDIT;
|
|
begin
|
|
new( Result, CreateParented( AOwner ) );
|
|
end;
|
|
|
|
end. |