1999-01-27 10:01:14 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2005-09-14 21:08:03 +00:00
|
|
|
// Name: ipcsetup.h
|
|
|
|
// Purpose: IPC sample settings
|
1999-01-27 10:01:14 +00:00
|
|
|
// Author: Julian Smart
|
2005-09-14 21:08:03 +00:00
|
|
|
// Modified by: Jurgen Doornik
|
1999-01-27 10:01:14 +00:00
|
|
|
// Created: 25/01/99
|
|
|
|
// Copyright: (c) Julian Smart
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2002-04-15 18:24:46 +00: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 10:01:14 +00:00
|
|
|
|
2006-01-26 19:06:06 +00:00
|
|
|
#include "wx/ipc.h"
|
1999-02-09 15:37:52 +00:00
|
|
|
|
2002-04-15 18:24:46 +00:00
|
|
|
// the default service name
|
2008-10-16 12:35:03 +00:00
|
|
|
#define IPC_SERVICE "4242"
|
2009-07-23 20:30:22 +00:00
|
|
|
//#define IPC_SERVICE wxT("/tmp/wxsrv424")
|
1999-01-27 10:01:14 +00:00
|
|
|
|
2005-09-14 21:08:03 +00:00
|
|
|
// the hostname
|
2008-10-16 12:35:03 +00:00
|
|
|
#define IPC_HOST "localhost"
|
2005-09-14 21:08:03 +00:00
|
|
|
|
2002-04-15 18:24:46 +00:00
|
|
|
// the IPC topic
|
2008-10-16 12:35:03 +00:00
|
|
|
#define IPC_TOPIC "IPC TEST"
|
1999-01-27 10:01:14 +00:00
|
|
|
|
2002-04-15 18:24:46 +00:00
|
|
|
// the name of the item we're being advised about
|
2008-10-16 12:35:03 +00: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"
|