]> git.saurik.com Git - wxWidgets.git/blame - include/wx/dde.h
wxStaticBitmapBase::DoGetBestSize
[wxWidgets.git] / include / wx / dde.h
CommitLineData
34138703
JS
1#ifndef _WX_DDE_H_BASE_
2#define _WX_DDE_H_BASE_
c801d85f 3
d162a7ee
VZ
4#include "wx/list.h"
5
6class wxDDEClient;
7class wxDDEServer;
8class wxDDEConnection;
9
bddd7a8d
VZ
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);
d162a7ee 13
2049ba38 14#if defined(__WXMSW__)
886dd7d2 15 #include "wx/msw/dde.h"
b63b07a8
RL
16#else
17 #error DDE is only supported on MSW
c801d85f
KB
18#endif
19
20#endif
34138703 21 // _WX_DDE_H_BASE_