dolphin/Source/Core/InputCommon/ControllerInterface
comex 6e774f1b64 Add missing includes where headers depend on other headers having been included first.
This is good hygiene, and also happens to be required to build Dolphin
using Clang modules.

(Under this setup, each header file becomes a module, and each #include
is automatically translated to a module import.  Recursive includes
still leak through (by default), but modules are compiled independently,
and can't depend on defines or types having previously been set up.  The
main reason to retrofit it onto Dolphin is compilation performance - no
more textual includes whatsoever, rather than putting a few blessed
common headers into a PCH.  Unfortunately, I found multiple Clang bugs
while trying to build Dolphin this way, so it's not ready yet, but I can
start with this prerequisite.)
2014-10-21 21:22:16 -04:00
..
Android Fix build failing when disabling precompiled headers. 2014-09-19 18:17:51 -04:00
DInput Change ControlState typedef to double, and change all related floats/doubles to use it. 2014-09-03 03:08:09 -04:00
ForceFeedback Add missing includes where headers depend on other headers having been included first. 2014-10-21 21:22:16 -04:00
OSX Kill off the wx casts within InputCommon and GLInterface. 2014-09-14 01:07:08 -04:00
SDL Change ControlState typedef to double, and change all related floats/doubles to use it. 2014-09-03 03:08:09 -04:00
XInput InputCommon: Remove unnecessary breaks in XInput's GetName function 2014-09-08 21:36:04 -04:00
Xlib Change a bunch of reference function arguments to pointers. 2014-10-02 03:00:33 -04:00
ControllerInterface.cpp ControllerInterface: Get rid of SetHwnd(), introduce Reinitialize() 2014-10-15 09:29:25 -04:00
ControllerInterface.h ControllerInterface: Get rid of SetHwnd(), introduce Reinitialize() 2014-10-15 09:29:25 -04:00
Device.cpp Host: Add a new "UIHasFocus" hook to determine if the UI has focus 2014-07-16 10:27:21 -04:00
Device.h Include CommonTypes.h instead of Common.h. 2014-09-08 15:39:58 -04:00
ExpressionParser.cpp Change ControlState typedef to double, and change all related floats/doubles to use it. 2014-09-03 03:08:09 -04:00
ExpressionParser.h clang-modernize -use-nullptr 2014-03-09 21:14:26 +01:00