indycorefpc.pas 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. unit indycorefpc;
  2. interface
  3. uses
  4. IdAssignedNumbers,
  5. IdBuffer,
  6. IdCmdTCPClient,
  7. IdCmdTCPServer,
  8. IdCommandHandlers,
  9. IdContext,
  10. IdCustomTCPServer,
  11. IdCustomTransparentProxy,
  12. IdExceptionCore,
  13. IdGlobalCore,
  14. IdIOHandler,
  15. IdIOHandlerSocket,
  16. IdIOHandlerStack,
  17. IdIOHandlerStream,
  18. IdIPAddress,
  19. IdIPMCastBase,
  20. IdIPMCastClient,
  21. IdIPMCastServer,
  22. IdIcmpClient,
  23. IdIntercept,
  24. IdInterceptSimLog,
  25. IdInterceptThrottler,
  26. IdLogBase,
  27. IdLogDebug,
  28. IdLogEvent,
  29. IdLogFile,
  30. IdLogStream,
  31. IdRawBase,
  32. IdRawClient,
  33. IdRawFunctions,
  34. IdRawHeaders,
  35. IdReply,
  36. IdReplyRFC,
  37. IdResourceStringsCore,
  38. IdScheduler,
  39. IdSchedulerOfThread,
  40. IdSchedulerOfThreadDefault,
  41. IdSchedulerOfThreadPool,
  42. IdServerIOHandler,
  43. IdServerIOHandlerSocket,
  44. IdServerIOHandlerStack,
  45. IdSimpleServer,
  46. IdSocketHandle,
  47. IdSocks,
  48. IdSync,
  49. IdTCPClient,
  50. IdTCPConnection,
  51. IdTCPServer,
  52. IdTCPStream,
  53. IdTask,
  54. IdThread,
  55. IdThreadComponent,
  56. IdThreadSafe,
  57. IdTraceRoute,
  58. IdUDPBase,
  59. IdUDPClient,
  60. IdUDPServer,
  61. IdYarn;
  62. implementation
  63. {
  64. disable hints about unused units. This unit just causes
  65. FreePascal to compile implicitly listed units in a package.
  66. }
  67. {$hints off}
  68. end.