]>
Commit | Line | Data |
---|---|---|
34138703 JS |
1 | #ifndef _WX_DCSCREEN_H_BASE_ |
2 | #define _WX_DCSCREEN_H_BASE_ | |
c801d85f | 3 | |
2049ba38 | 4 | #if defined(__WXMSW__) |
c801d85f | 5 | #include "wx/msw/dcscreen.h" |
2049ba38 | 6 | #elif defined(__WXMOTIF__) |
34138703 | 7 | #include "wx/motif/dcscreen.h" |
2049ba38 | 8 | #elif defined(__WXGTK__) |
c801d85f | 9 | #include "wx/gtk/dcscreen.h" |
83df96d6 JS |
10 | #elif defined(__WXX11__) |
11 | #include "wx/x11/dcscreen.h" | |
1e6feb95 VZ |
12 | #elif defined(__WXMGL__) |
13 | #include "wx/mgl/dcscreen.h" | |
34138703 JS |
14 | #elif defined(__WXMAC__) |
15 | #include "wx/mac/dcscreen.h" | |
e64df9bc DE |
16 | #elif defined(__WXCOCOA__) |
17 | #include "wx/cocoa/dcscreen.h" | |
1777b9bb DW |
18 | #elif defined(__WXPM__) |
19 | #include "wx/os2/dcscreen.h" | |
c801d85f KB |
20 | #endif |
21 | ||
22 | #endif | |
34138703 | 23 | // _WX_DCSCREEN_H_BASE_ |