Files
kolmck/Addons/KOLDHTML.pas

21 lines
331 B
ObjectPascal
Raw Normal View History

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.