]> git.saurik.com Git - wxWidgets.git/blob - include/wx/dragimag.h
Applied patch [ 903619 ] Win64 and Itanium support
[wxWidgets.git] / include / wx / dragimag.h
1 #ifndef _WX_DRAGIMAG_H_BASE_
2 #define _WX_DRAGIMAG_H_BASE_
3
4 #if wxUSE_DRAGIMAGE
5
6 class WXDLLEXPORT wxRect;
7 class WXDLLEXPORT wxMemoryDC;
8 class WXDLLEXPORT wxDC;
9
10 #if defined(__WXMSW__)
11 #if defined(__WIN16__) || defined(__WXUNIVERSAL__)
12 #include "wx/generic/dragimgg.h"
13 #define wxDragImage wxGenericDragImage
14
15 #else
16 #include "wx/msw/dragimag.h"
17 #endif
18 #elif defined(__WXMOTIF__)
19 #include "wx/generic/dragimgg.h"
20 #define wxDragImage wxGenericDragImage
21
22 #elif defined(__WXGTK__)
23 #include "wx/generic/dragimgg.h"
24 #define wxDragImage wxGenericDragImage
25
26 #elif defined(__WXX11__)
27 #include "wx/generic/dragimgg.h"
28 #define wxDragImage wxGenericDragImage
29
30 #elif defined(__WXMAC__)
31 #include "wx/generic/dragimgg.h"
32 #define wxDragImage wxGenericDragImage
33
34 #elif defined(__WXPM__)
35 #include "wx/generic/dragimgg.h"
36 #define wxDragImage wxGenericDragImage
37
38 #endif
39
40 #endif // wxUSE_DRAGIMAGE
41
42 #endif
43 // _WX_DRAGIMAG_H_BASE_