]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/dde.h
Applied patch [ 858324 ] Calling EndModal inside an EVT_INIT_DIALOG event handler
[wxWidgets.git] / include / wx / dde.h
... / ...
CommitLineData
1#ifndef _WX_DDE_H_BASE_
2#define _WX_DDE_H_BASE_
3
4#include "wx/list.h"
5
6class wxDDEClient;
7class wxDDEServer;
8class wxDDEConnection;
9
10WX_DECLARE_USER_EXPORTED_LIST(wxDDEClient, wxDDEClientList, WXDLLIMPEXP_BASE);
11WX_DECLARE_USER_EXPORTED_LIST(wxDDEServer, wxDDEServerList, WXDLLIMPEXP_BASE);
12WX_DECLARE_USER_EXPORTED_LIST(wxDDEConnection, wxDDEConnectionList, WXDLLIMPEXP_BASE);
13
14#if defined(__WXMSW__)
15 #include "wx/msw/dde.h"
16#elif defined(__WXMOTIF__)
17 #include "wx/motif/dde.h"
18#elif defined(__WXGTK__)
19 #include "wx/gtk/dde.h"
20#elif defined(__WXMAC__)
21 #include "wx/mac/dde.h"
22#elif defined(__WXPM__)
23 #include "wx/os2/dde.h"
24#endif
25
26#endif
27 // _WX_DDE_H_BASE_