X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ee80814753a739d9ea04a5c41174b41ebf1020f1..c447205527920a5c08601d042196173d59924fcb:/samples/ipc/ddesetup.h diff --git a/samples/ipc/ddesetup.h b/samples/ipc/ddesetup.h index 177d034b77..e5886c9ad0 100644 --- a/samples/ipc/ddesetup.h +++ b/samples/ipc/ddesetup.h @@ -9,34 +9,16 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -/* - * Adjust this before compiling, to switch between real DDE and TCP/IP - * implementations. - */ +// You may set this to 0 to prevent DDE from being used even under Windows +//#define wxUSE_DDE_FOR_IPC 0 -// If 1, use real DDE. If 0, use TCP/IP +#include -#ifdef __WXMSW__ -#define wxUSE_DDE_FOR_SAMPLE 0 -#else -#define wxUSE_DDE_FOR_SAMPLE 0 -#endif +// the default service name +#define IPC_SERVICE _T("4242") -#if wxUSE_DDE_FOR_SAMPLE - -#define wxConnection wxDDEConnection -#define wxServer wxDDEServer -#define wxClient wxDDEClient - -#include - -#else - -#define wxConnection wxTCPConnection -#define wxServer wxTCPServer -#define wxClient wxTCPClient - -#include - -#endif +// the IPC topic +#define IPC_TOPIC _T("IPC TEST") +// the name of the item we're being advised about +#define IPC_ADVISE_NAME _T("Item")