home *** CD-ROM | disk | FTP | other *** search
/ BUG 15 / BUGCD1998_06.ISO / desktop / hotkey / hotkey95.exe / Source / Components / AniReg.pas < prev    next >
Pascal/Delphi Source File  |  1998-01-02  |  476b  |  24 lines

  1. unit AniReg;
  2.  
  3. interface
  4.  
  5. uses
  6.   Classes, DsgnIntf,
  7.   AboutPrp, AboutEdt,
  8.   AniIcons, AniIcoEd,
  9.   AniIcon, AniPlay,
  10.   AniTray;
  11.  
  12. procedure Register;
  13.  
  14. implementation
  15.  
  16. procedure Register;
  17. begin
  18.   RegisterComponents('SheAr', [TAnimatedIcon, TAnimatedIconPlayer, TAnimatedTrayIcon]);
  19.   RegisterPropertyEditor(TypeInfo(TAboutInfo), nil, '', TAboutPropertyEditor);
  20.   RegisterPropertyEditor(TypeInfo(TAnimatedIcons), nil, '', TAnimatedIconsProperty);
  21. end;
  22.  
  23. end.
  24.