1999-01-27 10:01:14 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: ddesetup.h
|
|
|
|
// Purpose: DDE sample settings
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 25/01/99
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// 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
|
|
|
|
2002-04-15 18:24:46 +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
|
2002-12-15 17:25:36 +00:00
|
|
|
#define IPC_SERVICE _T("4242")
|
1999-01-27 10:01:14 +00:00
|
|
|
|
2002-04-15 18:24:46 +00:00
|
|
|
// the IPC topic
|
2002-12-15 17:25:36 +00:00
|
|
|
#define IPC_TOPIC _T("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
|
2002-12-15 17:25:36 +00:00
|
|
|
#define IPC_ADVISE_NAME _T("Item")
|