wxClient: wxIPCObject

A wxClient object represents the client part of a client-server DDE (Dynamic Data Exchange) conversation (available in both Windows and UNIX). See section [*].

wxClient::wxClient

voidwxClient

Constructs a client object.

wxClient::MakeConnection

wxConnection *MakeConnectionchar *host, char *service, char *topic

Tries to make a connection with a server specified by the host (machine name under UNIX, ignored under Windows), service name (must contain an integer port number under UNIX), and topic string. If the server allows a connection, a wxConnection object will be returned. The type of wxConnection returned can be altered by deriving the OnMakeConnection member to return your own derived connection object.

wxClient::OnMakeConnection

wxConnection *OnMakeConnection

The type of wxConnection returned from a MakeConnection call can be altered by deriving the OnMakeConnection member to return your own derived connection object. By default, an ordinary wxConnection object is returned.