Unicode. You know the drill.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2135 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ove Kaaven
1999-04-13 11:43:03 +00:00
parent 4b21397f16
commit 2ed57eb790
3 changed files with 8 additions and 8 deletions

View File

@@ -73,17 +73,17 @@ public:
virtual ~wxTCPConnection();
// Calls that CLIENT can make
bool Execute(char *data, int size = -1,
bool Execute(wxChar *data, int size = -1,
wxIPCFormat format = wxIPC_TEXT);
char *Request(const wxString& item, int *size = NULL,
wxIPCFormat format = wxIPC_TEXT);
bool Poke(const wxString& item, char *data, int size = -1,
bool Poke(const wxString& item, wxChar *data, int size = -1,
wxIPCFormat format = wxIPC_TEXT);
bool StartAdvise(const wxString& item);
bool StopAdvise(const wxString& item);
// Calls that SERVER can make
bool Advise(const wxString& item, char *data, int size = -1,
bool Advise(const wxString& item, wxChar *data, int size = -1,
wxIPCFormat format = wxIPC_TEXT);
// Calls that both can make