]>
git.saurik.com Git - wxWidgets.git/blob - samples/dde/ddesetup.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: DDE sample settings
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 * Adjust this before compiling, to switch between real DDE and TCP/IP
17 // If 1, use real DDE. If 0, use TCP/IP
18 #define wxUSE_DDE_FOR_SAMPLE 1
20 #if wxUSE_DDE_FOR_SAMPLE
22 #define wxConnection wxDDEConnection
23 #define wxServer wxDDEServer
24 #define wxClient wxDDEClient
30 #define wxConnection wxTCPConnection
31 #define wxServer wxTCPServer
32 #define wxClient wxTCPClient
34 #include <wx/sckipc.h>