X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/886dd7d28e50c003cc88b81b968d487a3c17b0d7..dc26eeb36a7415bd73d3e442c79b7acc0aeed6eb:/include/wx/msw/dde.h diff --git a/include/wx/msw/dde.h b/include/wx/msw/dde.h index 7193ee45e6..2a34b01bc7 100644 --- a/include/wx/msw/dde.h +++ b/include/wx/msw/dde.h @@ -12,10 +12,6 @@ #ifndef _WX_DDE_H_ #define _WX_DDE_H_ -#ifdef __GNUG__ -#pragma interface "dde.h" -#endif - #include "wx/ipcbase.h" /* @@ -42,10 +38,10 @@ * */ -class WXDLLEXPORT_BASE wxDDEServer; -class WXDLLEXPORT_BASE wxDDEClient; +class WXDLLIMPEXP_BASE wxDDEServer; +class WXDLLIMPEXP_BASE wxDDEClient; -class WXDLLEXPORT_BASE wxDDEConnection: public wxConnectionBase +class WXDLLIMPEXP_BASE wxDDEConnection: public wxConnectionBase { DECLARE_DYNAMIC_CLASS(wxDDEConnection) public: @@ -55,6 +51,7 @@ public: // Calls that CLIENT can make virtual bool Execute(const wxChar *data, int size = -1, wxIPCFormat format = wxIPC_TEXT); + virtual bool Execute(const wxString& str) { return Execute(str, -1, wxIPC_TEXT); } virtual wxChar *Request(const wxString& item, int *size = NULL, wxIPCFormat format = wxIPC_TEXT); virtual bool Poke(const wxString& item, wxChar *data, int size = -1, wxIPCFormat format = wxIPC_TEXT); virtual bool StartAdvise(const wxString& item); @@ -66,7 +63,7 @@ public: // Calls that both can make virtual bool Disconnect(void); - // Default behaviour is to delete connection and return TRUE + // Default behaviour is to delete connection and return true virtual bool OnDisconnect(void); public: @@ -82,14 +79,14 @@ public: DECLARE_NO_COPY_CLASS(wxDDEConnection) }; -class WXDLLEXPORT_BASE wxDDEServer: public wxServerBase +class WXDLLIMPEXP_BASE wxDDEServer: public wxServerBase { DECLARE_DYNAMIC_CLASS(wxDDEServer) public: wxDDEServer(void); ~wxDDEServer(void); - bool Create(const wxString& server_name); // Returns FALSE if can't create server (e.g. port + bool Create(const wxString& server_name); // Returns false if can't create server (e.g. port // number is already in use) virtual wxConnectionBase *OnAcceptConnection(const wxString& topic); @@ -111,7 +108,7 @@ protected: wxDDEConnectionList m_connections; }; -class WXDLLEXPORT_BASE wxDDEClient: public wxClientBase +class WXDLLIMPEXP_BASE wxDDEClient: public wxClientBase { DECLARE_DYNAMIC_CLASS(wxDDEClient) public: @@ -140,8 +137,8 @@ protected: wxDDEConnectionList m_connections; }; -void WXDLLEXPORT_BASE wxDDEInitialize(); -void WXDLLEXPORT_BASE wxDDECleanUp(); +void WXDLLIMPEXP_BASE wxDDEInitialize(); +void WXDLLIMPEXP_BASE wxDDECleanUp(); #endif // _WX_DDE_H_