| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- {
- $Project$
- $Workfile$
- $Revision$
- $DateUTC$
- $Id$
- This file is part of the Indy (Internet Direct) project, and is offered
- under the dual-licensing agreement described on the Indy website.
- (http://www.indyproject.org/)
- Copyright:
- (c) 1993-2005, Chad Z. Hower and the Indy Pit Crew. All rights reserved.
- }
- {
- $Log$
- }
- {
- Rev 1.2 8/16/2004 1:08:46 PM JPMugaas
- Failed to compile in some IDE's.
- Rev 1.1 2004.08.13 21:46:20 czhower
- Fix for .NET
- Rev 1.0 2004.08.13 10:54:58 czhower
- Initial checkin
- }
- unit IdGlobalCore;
- interface
- {$I IdCompilerDefines.inc}
- uses
- Classes,
- IdGlobal;
- const
- {$IFDEF UNIX}
- tpListener = tpNormal;
- {$ELSE}
- tpListener = tpHighest;
- {$ENDIF}
- implementation
- end.
|