mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 10:37:58 +02:00
25 lines
298 B
ObjectPascal
25 lines
298 B
ObjectPascal
unit regchatctrls;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, chatcontrol, typingindicator;
|
|
|
|
procedure register;
|
|
|
|
implementation
|
|
|
|
uses lresources;
|
|
|
|
procedure register;
|
|
begin
|
|
RegisterComponents('Misc',[TChatControl,TTypingIndicator]);
|
|
end;
|
|
|
|
initialization
|
|
{$i chatctrls.inc}
|
|
end.
|
|
|