]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/dde.h
Reverted patch [ 746201 ] (partially) because of unwanted side-effects
[wxWidgets.git] / include / wx / dde.h
... / ...
CommitLineData
1#ifndef _WX_DDE_H_BASE_
2#define _WX_DDE_H_BASE_
3
4#include "wx/list.h"
5
6class wxDDEClient;
7class wxDDEServer;
8class wxDDEConnection;
9
10WX_DECLARE_EXPORTED_LIST(wxDDEClient, wxDDEClientList);
11WX_DECLARE_EXPORTED_LIST(wxDDEServer, wxDDEServerList);
12WX_DECLARE_EXPORTED_LIST(wxDDEConnection, wxDDEConnectionList);
13
14
15#if defined(__WXMSW__)
16#include "wx/msw/dde.h"
17#elif defined(__WXMOTIF__)
18#include "wx/motif/dde.h"
19#elif defined(__WXGTK__)
20#include "wx/gtk/dde.h"
21#elif defined(__WXMAC__)
22#include "wx/mac/dde.h"
23#elif defined(__WXPM__)
24#include "wx/os2/dde.h"
25#endif
26
27#endif
28 // _WX_DDE_H_BASE_