]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/dde.h
using newer API
[wxWidgets.git] / include / wx / dde.h
... / ...
CommitLineData
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
8// RCS-ID: $Id$
9// Licence: wxWindows Licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_DDE_H_BASE_
13#define _WX_DDE_H_BASE_
14
15#include "wx/list.h"
16
17class WXDLLIMPEXP_BASE wxDDEClient;
18class WXDLLIMPEXP_BASE wxDDEServer;
19class WXDLLIMPEXP_BASE wxDDEConnection;
20
21WX_DECLARE_USER_EXPORTED_LIST(wxDDEClient, wxDDEClientList, WXDLLIMPEXP_BASE);
22WX_DECLARE_USER_EXPORTED_LIST(wxDDEServer, wxDDEServerList, WXDLLIMPEXP_BASE);
23WX_DECLARE_USER_EXPORTED_LIST(wxDDEConnection, wxDDEConnectionList, WXDLLIMPEXP_BASE);
24
25#if defined(__WXMSW__)
26 #include "wx/msw/dde.h"
27#else
28 #error DDE is only supported on MSW
29#endif
30
31#endif
32 // _WX_DDE_H_BASE_