IdGlobalCore.pas 793 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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.2 8/16/2004 1:08:46 PM JPMugaas
  18. Failed to compile in some IDE's.
  19. Rev 1.1 2004.08.13 21:46:20 czhower
  20. Fix for .NET
  21. Rev 1.0 2004.08.13 10:54:58 czhower
  22. Initial checkin
  23. }
  24. unit IdGlobalCore;
  25. interface
  26. {$I IdCompilerDefines.inc}
  27. uses
  28. Classes,
  29. IdGlobal;
  30. const
  31. {$IFDEF UNIX}
  32. tpListener = tpNormal;
  33. {$ELSE}
  34. tpListener = tpHighest;
  35. {$ENDIF}
  36. implementation
  37. end.