]>
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
20 #define wxUSE_DDE_FOR_SAMPLE 1
22 #define wxUSE_DDE_FOR_SAMPLE 0
25 #if wxUSE_DDE_FOR_SAMPLE
27 #define wxConnection wxDDEConnection
28 #define wxServer wxDDEServer
29 #define wxClient wxDDEClient
35 #define wxConnection wxTCPConnection
36 #define wxServer wxTCPServer
37 #define wxClient wxTCPClient
39 #include <wx/sckipc.h>