IdDummyUnit.pas 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. Rev 1.14 9/18/2003 10:44:00 AM JPMugaas
  16. Moved IdThread to Core.
  17. Rev 1.0 7/24/2003 12:13:58 PM JPMugaas
  18. Test compile template and the IdDummyUnit template for managing run-time
  19. units we put into the design-time package and force to be statically linked
  20. into the program.
  21. }
  22. unit IdDummyUnit;
  23. {
  24. This unit is really not a part of Indy. This unit's purpose is to trick the DCC32
  25. compiler into generating .HPP and .OBJ files for run-time units that will not be
  26. in the run-time package but will be on the palette.
  27. Contributed by John Doe
  28. }
  29. interface
  30. {$i IdCompilerDefines.inc}
  31. uses
  32. IdAntiFreeze;
  33. implementation
  34. { de-de-de-de, that's all folks. }
  35. end.