]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/joystick.h
Added wxRichTextTableBlock class to help with table UI operations
[wxWidgets.git] / include / wx / joystick.h
... / ...
CommitLineData
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
11#ifndef _WX_JOYSTICK_H_BASE_
12#define _WX_JOYSTICK_H_BASE_
13
14#include "wx/defs.h"
15
16#if wxUSE_JOYSTICK
17
18#if defined(__WINDOWS__)
19#include "wx/msw/joystick.h"
20#elif defined(__WXMOTIF__)
21#include "wx/unix/joystick.h"
22#elif defined(__WXGTK__)
23#include "wx/unix/joystick.h"
24#elif defined(__WXX11__)
25#include "wx/unix/joystick.h"
26#elif defined(__DARWIN__)
27#include "wx/osx/core/joystick.h"
28#elif defined(__WXMAC__)
29#include "wx/osx/joystick.h"
30#elif defined(__WXPM__)
31#include "wx/os2/joystick.h"
32#endif
33
34#endif // wxUSE_JOYSTICK
35
36#endif
37 // _WX_JOYSTICK_H_BASE_