joystick.h 912 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name: wx/joystick.h
  3. // Purpose: wxJoystick base header
  4. // Author: wxWidgets Team
  5. // Modified by:
  6. // Created:
  7. // Copyright: (c) wxWidgets Team
  8. // Licence: wxWindows licence
  9. /////////////////////////////////////////////////////////////////////////////
  10. #ifndef _WX_JOYSTICK_H_BASE_
  11. #define _WX_JOYSTICK_H_BASE_
  12. #include "wx/defs.h"
  13. #if wxUSE_JOYSTICK
  14. #if defined(__WINDOWS__)
  15. #include "wx/msw/joystick.h"
  16. #elif defined(__WXMOTIF__)
  17. #include "wx/unix/joystick.h"
  18. #elif defined(__WXGTK__)
  19. #include "wx/unix/joystick.h"
  20. #elif defined(__WXX11__)
  21. #include "wx/unix/joystick.h"
  22. #elif defined(__DARWIN__)
  23. #include "wx/osx/core/joystick.h"
  24. #elif defined(__WXMAC__)
  25. #include "wx/osx/joystick.h"
  26. #elif defined(__WXPM__)
  27. #include "wx/os2/joystick.h"
  28. #endif
  29. #endif // wxUSE_JOYSTICK
  30. #endif
  31. // _WX_JOYSTICK_H_BASE_