ipcsetup.h 908 B

1234567891011121314151617181920212223242526272829303132
  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name: ipcsetup.h
  3. // Purpose: IPC sample settings
  4. // Author: Julian Smart
  5. // Modified by: Jurgen Doornik
  6. // Created: 25/01/99
  7. // Copyright: (c) Julian Smart
  8. // Licence: wxWindows licence
  9. /////////////////////////////////////////////////////////////////////////////
  10. // You may set this to 0 to prevent DDE from being used even under Windows
  11. //#define wxUSE_DDE_FOR_IPC 0
  12. #include "wx/ipc.h"
  13. // the default service name
  14. #define IPC_SERVICE "4242"
  15. //#define IPC_SERVICE wxT("/tmp/wxsrv424")
  16. // the hostname
  17. #define IPC_HOST "localhost"
  18. // the IPC topic
  19. #define IPC_TOPIC "IPC TEST"
  20. // the name of the item we're being advised about
  21. #define IPC_ADVISE_NAME "Item"
  22. // the values used by tests/benchmarks/ipcclient.cpp
  23. #define IPC_BENCHMARK_TOPIC "wxIPC BENCH"
  24. #define IPC_BENCHMARK_ITEM "Benchmark"