]>
Commit | Line | Data |
---|---|---|
99d80019 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/dde.h | |
3 | // Purpose: DDE base header | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: | |
7 | // Copyright: (c) Julian Smart | |
99d80019 JS |
8 | // Licence: wxWindows Licence |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
34138703 JS |
11 | #ifndef _WX_DDE_H_BASE_ |
12 | #define _WX_DDE_H_BASE_ | |
c801d85f | 13 | |
d162a7ee VZ |
14 | #include "wx/list.h" |
15 | ||
b5dbe15d VS |
16 | class WXDLLIMPEXP_FWD_BASE wxDDEClient; |
17 | class WXDLLIMPEXP_FWD_BASE wxDDEServer; | |
18 | class WXDLLIMPEXP_FWD_BASE wxDDEConnection; | |
d162a7ee | 19 | |
bddd7a8d VZ |
20 | WX_DECLARE_USER_EXPORTED_LIST(wxDDEClient, wxDDEClientList, WXDLLIMPEXP_BASE); |
21 | WX_DECLARE_USER_EXPORTED_LIST(wxDDEServer, wxDDEServerList, WXDLLIMPEXP_BASE); | |
22 | WX_DECLARE_USER_EXPORTED_LIST(wxDDEConnection, wxDDEConnectionList, WXDLLIMPEXP_BASE); | |
d162a7ee | 23 | |
bb5a9514 | 24 | #if defined(__WINDOWS__) |
886dd7d2 | 25 | #include "wx/msw/dde.h" |
b63b07a8 | 26 | #else |
bb5a9514 | 27 | #error DDE is only supported under Windows |
c801d85f KB |
28 | #endif |
29 | ||
30 | #endif | |
34138703 | 31 | // _WX_DDE_H_BASE_ |