]>
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 JS |
6 | // Created: 25/01/99 |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
d5172a58 VZ |
12 | // You may set this to 0 to prevent DDE from being used even under Windows |
13 | //#define wxUSE_DDE_FOR_IPC 0 | |
7921cf2b | 14 | |
b20edf8b | 15 | #include "wx/ipc.h" |
8e0080ee | 16 | |
d5172a58 | 17 | // the default service name |
600683ca | 18 | #define IPC_SERVICE _T("4242") |
c25ac78a | 19 | //#define IPC_SERVICE _T("/tmp/wxsrv424") |
7921cf2b | 20 | |
bc2defe2 MW |
21 | // the hostname |
22 | #define IPC_HOST _T("localhost") | |
23 | ||
d5172a58 | 24 | // the IPC topic |
600683ca | 25 | #define IPC_TOPIC _T("IPC TEST") |
7921cf2b | 26 | |
d5172a58 | 27 | // the name of the item we're being advised about |
600683ca | 28 | #define IPC_ADVISE_NAME _T("Item") |