]> git.saurik.com Git - wxWidgets.git/blame - include/wx/dragimag.h
Revert "Make wxMSW stack walking methods work with Unicode identifiers."
[wxWidgets.git] / include / wx / dragimag.h
CommitLineData
99d80019
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/dragimag.h
3// Purpose: wxDragImage base header
4// Author: Julian Smart
5// Modified by:
6// Created:
7// Copyright: (c) Julian Smart
99d80019
JS
8// Licence: wxWindows Licence
9/////////////////////////////////////////////////////////////////////////////
10
7cf83330
JS
11#ifndef _WX_DRAGIMAG_H_BASE_
12#define _WX_DRAGIMAG_H_BASE_
13
fa8dca8d 14#if wxUSE_DRAGIMAGE
1e6feb95 15
b5dbe15d
VS
16class WXDLLIMPEXP_FWD_CORE wxRect;
17class WXDLLIMPEXP_FWD_CORE wxMemoryDC;
18class WXDLLIMPEXP_FWD_CORE wxDC;
387ebd3e 19
7cf83330 20#if defined(__WXMSW__)
3a5bcc4d
VZ
21# if defined(__WXUNIVERSAL__)
22# include "wx/generic/dragimgg.h"
23# define wxDragImage wxGenericDragImage
24# else
25# include "wx/msw/dragimag.h"
26# endif
68be9f09 27
7cf83330 28#elif defined(__WXMOTIF__)
3a5bcc4d
VZ
29# include "wx/generic/dragimgg.h"
30# define wxDragImage wxGenericDragImage
68be9f09 31
7cf83330 32#elif defined(__WXGTK__)
3a5bcc4d
VZ
33# include "wx/generic/dragimgg.h"
34# define wxDragImage wxGenericDragImage
68be9f09 35
83df96d6 36#elif defined(__WXX11__)
3a5bcc4d
VZ
37# include "wx/generic/dragimgg.h"
38# define wxDragImage wxGenericDragImage
83df96d6 39
7cf83330 40#elif defined(__WXMAC__)
3a5bcc4d
VZ
41# include "wx/generic/dragimgg.h"
42# define wxDragImage wxGenericDragImage
68be9f09 43
1777b9bb 44#elif defined(__WXPM__)
3a5bcc4d
VZ
45# include "wx/generic/dragimgg.h"
46# define wxDragImage wxGenericDragImage
68be9f09 47
7cf83330
JS
48#endif
49
fa8dca8d 50#endif // wxUSE_DRAGIMAGE
1e6feb95 51
7cf83330
JS
52#endif
53 // _WX_DRAGIMAG_H_BASE_