1999-01-27 05:01:14 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2005-09-14 17:08:03 -04:00
|
|
|
// Name: ipcsetup.h
|
|
|
|
// Purpose: IPC sample settings
|
1999-01-27 05:01:14 -05:00
|
|
|
// Author: Julian Smart
|
2005-09-14 17:08:03 -04:00
|
|
|
// Modified by: Jurgen Doornik
|
1999-01-27 05:01:14 -05:00
|
|
|
// Created: 25/01/99
|
|
|
|
// Copyright: (c) Julian Smart
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2002-04-15 14:24:46 -04:00
|
|
|
// You may set this to 0 to prevent DDE from being used even under Windows
|
|
|
|
//#define wxUSE_DDE_FOR_IPC 0
|
1999-01-27 05:01:14 -05:00
|
|
|
|
2006-01-26 14:06:06 -05:00
|
|
|
#include "wx/ipc.h"
|
1999-02-09 10:37:52 -05:00
|
|
|
|
2002-04-15 14:24:46 -04:00
|
|
|
// the default service name
|
2008-10-16 08:35:03 -04:00
|
|
|
#define IPC_SERVICE "4242"
|
2009-07-23 16:30:22 -04:00
|
|
|
//#define IPC_SERVICE wxT("/tmp/wxsrv424")
|
1999-01-27 05:01:14 -05:00
|
|
|
|
2005-09-14 17:08:03 -04:00
|
|
|
// the hostname
|
2008-10-16 08:35:03 -04:00
|
|
|
#define IPC_HOST "localhost"
|
2005-09-14 17:08:03 -04:00
|
|
|
|
2002-04-15 14:24:46 -04:00
|
|
|
// the IPC topic
|
2008-10-16 08:35:03 -04:00
|
|
|
#define IPC_TOPIC "IPC TEST"
|
1999-01-27 05:01:14 -05:00
|
|
|
|
2002-04-15 14:24:46 -04:00
|
|
|
// the name of the item we're being advised about
|
2008-10-16 08:35:03 -04:00
|
|
|
#define IPC_ADVISE_NAME "Item"
|
|
|
|
|
|
|
|
|
|
|
|
// the values used by tests/benchmarks/ipcclient.cpp
|
|
|
|
#define IPC_BENCHMARK_TOPIC "wxIPC BENCH"
|
|
|
|
#define IPC_BENCHMARK_ITEM "Benchmark"
|