IdRegisterSecurity.pas 930 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. $Project$
  3. $Workfile$
  4. $Revision$
  5. $DateUTC$
  6. $Id$
  7. This file is part of the Indy (Internet Direct) project, and is offered
  8. under the dual-licensing agreement described on the Indy website.
  9. (http://www.indyproject.org/)
  10. Copyright:
  11. (c) 1993-2005, Chad Z. Hower and the Indy Pit Crew. All rights reserved.
  12. }
  13. {
  14. $Log$
  15. }
  16. {
  17. Rev 1.1 3/28/2005 1:11:30 PM JPMugaas
  18. Package build errors.
  19. Rev 1.0 3/28/2005 5:59:14 AM JPMugaas
  20. New Security package.
  21. }
  22. unit IdRegisterSecurity;
  23. interface
  24. uses
  25. Classes;
  26. {$R IconsDotNet\TIdIOHandlerTls.bmp}
  27. {$R IconsDotNet\TIdServerIOHandlerTls.bmp}
  28. // Procedures
  29. procedure Register;
  30. implementation
  31. uses IdIOHandlerTls,
  32. IdServerIOHandlerTls,
  33. IdDsnCoreResourceStrings;
  34. procedure Register;
  35. begin
  36. RegisterComponents(RSRegIndyIOHandlers,
  37. [TIdIOHandlerTls,
  38. TIdServerIOHandlerTls]);
  39. end;
  40. end.