]>
Commit | Line | Data |
---|---|---|
1 | #ifndef _WX_DDE_H_BASE_ | |
2 | #define _WX_DDE_H_BASE_ | |
3 | ||
4 | #include "wx/list.h" | |
5 | ||
6 | class wxDDEClient; | |
7 | class wxDDEServer; | |
8 | class wxDDEConnection; | |
9 | ||
10 | WX_DECLARE_USER_EXPORTED_LIST(wxDDEClient, wxDDEClientList, WXDLLIMPEXP_BASE); | |
11 | WX_DECLARE_USER_EXPORTED_LIST(wxDDEServer, wxDDEServerList, WXDLLIMPEXP_BASE); | |
12 | WX_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_ |