Use old licence name
[wxWidgets.git] / include / wx / dde.h
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 #else
17 #error DDE is only supported on MSW
18 #endif
19
20 #endif
21 // _WX_DDE_H_BASE_