]>
Commit | Line | Data |
---|---|---|
34138703 JS |
1 | #ifndef _WX_DDE_H_BASE_ |
2 | #define _WX_DDE_H_BASE_ | |
c801d85f | 3 | |
d162a7ee VZ |
4 | #include "wx/list.h" |
5 | ||
6 | class wxDDEClient; | |
7 | class wxDDEServer; | |
8 | class wxDDEConnection; | |
9 | ||
cca78463 RD |
10 | WX_DECLARE_EXPORTED_LIST(wxDDEClient, wxDDEClientList); |
11 | WX_DECLARE_EXPORTED_LIST(wxDDEServer, wxDDEServerList); | |
12 | WX_DECLARE_EXPORTED_LIST(wxDDEConnection, wxDDEConnectionList); | |
d162a7ee VZ |
13 | |
14 | ||
2049ba38 | 15 | #if defined(__WXMSW__) |
c801d85f | 16 | #include "wx/msw/dde.h" |
2049ba38 | 17 | #elif defined(__WXMOTIF__) |
34138703 | 18 | #include "wx/motif/dde.h" |
2049ba38 | 19 | #elif defined(__WXGTK__) |
c801d85f | 20 | #include "wx/gtk/dde.h" |
34138703 JS |
21 | #elif defined(__WXMAC__) |
22 | #include "wx/mac/dde.h" | |
1777b9bb DW |
23 | #elif defined(__WXPM__) |
24 | #include "wx/os2/dde.h" | |
c801d85f KB |
25 | #endif |
26 | ||
27 | #endif | |
34138703 | 28 | // _WX_DDE_H_BASE_ |