home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1999 February
/
PCWorld_1999-02_cd.bin
/
temacd
/
HotKeys
/
AniReg.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1998-01-02
|
476b
|
24 lines
unit AniReg;
interface
uses
Classes, DsgnIntf,
AboutPrp, AboutEdt,
AniIcons, AniIcoEd,
AniIcon, AniPlay,
AniTray;
procedure Register;
implementation
procedure Register;
begin
RegisterComponents('SheAr', [TAnimatedIcon, TAnimatedIconPlayer, TAnimatedTrayIcon]);
RegisterPropertyEditor(TypeInfo(TAboutInfo), nil, '', TAboutPropertyEditor);
RegisterPropertyEditor(TypeInfo(TAnimatedIcons), nil, '', TAnimatedIconsProperty);
end;
end.