]>
Commit | Line | Data |
---|---|---|
7921cf2b | 1 | ///////////////////////////////////////////////////////////////////////////// |
bc2defe2 MW |
2 | // Name: ipcsetup.h |
3 | // Purpose: IPC sample settings | |
7921cf2b | 4 | // Author: Julian Smart |
bc2defe2 | 5 | // Modified by: Jurgen Doornik |
7921cf2b | 6 | // Created: 25/01/99 |
7921cf2b JS |
7 | // Copyright: (c) Julian Smart |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
d5172a58 VZ |
11 | // You may set this to 0 to prevent DDE from being used even under Windows |
12 | //#define wxUSE_DDE_FOR_IPC 0 | |
7921cf2b | 13 | |
b20edf8b | 14 | #include "wx/ipc.h" |
8e0080ee | 15 | |
d5172a58 | 16 | // the default service name |
65669e31 | 17 | #define IPC_SERVICE "4242" |
9a83f860 | 18 | //#define IPC_SERVICE wxT("/tmp/wxsrv424") |
7921cf2b | 19 | |
bc2defe2 | 20 | // the hostname |
65669e31 | 21 | #define IPC_HOST "localhost" |
bc2defe2 | 22 | |
d5172a58 | 23 | // the IPC topic |
65669e31 | 24 | #define IPC_TOPIC "IPC TEST" |
7921cf2b | 25 | |
d5172a58 | 26 | // the name of the item we're being advised about |
65669e31 VZ |
27 | #define IPC_ADVISE_NAME "Item" |
28 | ||
29 | ||
30 | // the values used by tests/benchmarks/ipcclient.cpp | |
31 | #define IPC_BENCHMARK_TOPIC "wxIPC BENCH" | |
32 | #define IPC_BENCHMARK_ITEM "Benchmark" |