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