*
*/
-class WXDLLEXPORT wxDDEServer;
-class WXDLLEXPORT wxDDEClient;
+class WXDLLIMPEXP_BASE wxDDEServer;
+class WXDLLIMPEXP_BASE wxDDEClient;
-class WXDLLEXPORT wxDDEConnection: public wxConnectionBase
+class WXDLLIMPEXP_BASE wxDDEConnection: public wxConnectionBase
{
DECLARE_DYNAMIC_CLASS(wxDDEConnection)
public:
- wxDDEConnection(char *buffer, int size); // use external buffer
+ wxDDEConnection(wxChar *buffer, int size); // use external buffer
wxDDEConnection(); // use internal buffer
~wxDDEConnection(void);
// Calls that CLIENT can make
virtual bool Execute(const wxChar *data, int size = -1, wxIPCFormat format = wxIPC_TEXT);
- virtual char *Request(const wxString& item, int *size = NULL, wxIPCFormat format = 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);
virtual bool StopAdvise(const wxString& item);
wxChar* m_sendingData;
int m_dataSize;
wxIPCFormat m_dataType;
+
+ DECLARE_NO_COPY_CLASS(wxDDEConnection)
};
-class WXDLLEXPORT wxDDEServer: public wxServerBase
+class WXDLLIMPEXP_BASE wxDDEServer: public wxServerBase
{
DECLARE_DYNAMIC_CLASS(wxDDEServer)
public:
wxDDEConnection *FindConnection(WXHCONV conv);
bool DeleteConnection(WXHCONV conv);
inline wxString& GetServiceName(void) const { return (wxString&) m_serviceName; }
- inline wxList& GetConnections(void) const { return (wxList&) m_connections; }
-
- protected:
- int m_lastError;
- wxString m_serviceName;
- wxList m_connections;
+ inline wxDDEConnectionList& GetConnections(void) const
+ {
+ return (wxDDEConnectionList&) m_connections;
+ }
+
+protected:
+ int m_lastError;
+ wxString m_serviceName;
+ wxDDEConnectionList m_connections;
};
-class WXDLLEXPORT wxDDEClient: public wxClientBase
+class WXDLLIMPEXP_BASE wxDDEClient: public wxClientBase
{
DECLARE_DYNAMIC_CLASS(wxDDEClient)
public:
// Find/delete wxDDEConnection corresponding to the HCONV
wxDDEConnection *FindConnection(WXHCONV conv);
bool DeleteConnection(WXHCONV conv);
- inline wxList& GetConnections(void) const { return (wxList&) m_connections; }
- protected:
- int m_lastError;
- wxList m_connections;
+ inline wxDDEConnectionList& GetConnections(void) const
+ {
+ return (wxDDEConnectionList&) m_connections;
+ }
+
+protected:
+ int m_lastError;
+ wxDDEConnectionList m_connections;
};
-void WXDLLEXPORT wxDDEInitialize();
-void WXDLLEXPORT wxDDECleanUp();
+void WXDLLIMPEXP_BASE wxDDEInitialize();
+void WXDLLIMPEXP_BASE wxDDECleanUp();
#endif
// _WX_DDE_H_