2005-03-16 16:18:31 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2011-03-20 00:14:35 +00:00
|
|
|
// Name: wx/joystick.h
|
2005-03-16 16:18:31 +00:00
|
|
|
// Purpose: wxJoystick base header
|
|
|
|
// Author: wxWidgets Team
|
|
|
|
// Modified by:
|
|
|
|
// Created:
|
|
|
|
// Copyright: (c) wxWidgets Team
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-15 00:23:28 +00:00
|
|
|
#ifndef _WX_JOYSTICK_H_BASE_
|
|
|
|
#define _WX_JOYSTICK_H_BASE_
|
1998-06-13 10:12:57 +00:00
|
|
|
|
2005-03-16 16:18:31 +00:00
|
|
|
#include "wx/defs.h"
|
|
|
|
|
2001-05-21 22:49:40 +00:00
|
|
|
#if wxUSE_JOYSTICK
|
|
|
|
|
2012-03-04 20:31:42 +00:00
|
|
|
#if defined(__WINDOWS__)
|
1998-06-13 10:12:57 +00:00
|
|
|
#include "wx/msw/joystick.h"
|
1998-07-10 14:15:17 +00:00
|
|
|
#elif defined(__WXMOTIF__)
|
2003-08-02 13:50:49 +00:00
|
|
|
#include "wx/unix/joystick.h"
|
1998-07-10 14:15:17 +00:00
|
|
|
#elif defined(__WXGTK__)
|
2003-08-02 13:50:49 +00:00
|
|
|
#include "wx/unix/joystick.h"
|
2002-02-05 16:34:33 +00:00
|
|
|
#elif defined(__WXX11__)
|
2003-08-02 13:50:49 +00:00
|
|
|
#include "wx/unix/joystick.h"
|
2005-02-14 09:38:42 +00:00
|
|
|
#elif defined(__DARWIN__)
|
2008-06-11 19:17:41 +00:00
|
|
|
#include "wx/osx/core/joystick.h"
|
2005-02-26 10:05:05 +00:00
|
|
|
#elif defined(__WXMAC__)
|
2008-06-11 19:17:41 +00:00
|
|
|
#include "wx/osx/joystick.h"
|
1999-07-28 03:38:12 +00:00
|
|
|
#elif defined(__WXPM__)
|
|
|
|
#include "wx/os2/joystick.h"
|
1998-06-13 10:12:57 +00:00
|
|
|
#endif
|
|
|
|
|
2001-05-21 22:49:40 +00:00
|
|
|
#endif // wxUSE_JOYSTICK
|
|
|
|
|
1998-06-13 10:12:57 +00:00
|
|
|
#endif
|
1998-08-15 00:23:28 +00:00
|
|
|
// _WX_JOYSTICK_H_BASE_
|