| 1 | #ifndef _WX_JOYSTICK_H_BASE_ |
| 2 | #define _WX_JOYSTICK_H_BASE_ |
| 3 | |
| 4 | #if wxUSE_JOYSTICK |
| 5 | |
| 6 | #if defined(__WXMSW__) |
| 7 | #include "wx/msw/joystick.h" |
| 8 | #elif defined(__WXMOTIF__) |
| 9 | #include "wx/unix/joystick.h" |
| 10 | #elif defined(__WXGTK__) |
| 11 | #include "wx/unix/joystick.h" |
| 12 | #elif defined(__WXX11__) |
| 13 | #include "wx/unix/joystick.h" |
| 14 | #elif defined(__WXMAC__) |
| 15 | #include "wx/mac/joystick.h" |
| 16 | #elif defined(__WXPM__) |
| 17 | #include "wx/os2/joystick.h" |
| 18 | #endif |
| 19 | |
| 20 | #endif // wxUSE_JOYSTICK |
| 21 | |
| 22 | #endif |
| 23 | // _WX_JOYSTICK_H_BASE_ |