summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/evdev/evdev.h
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2016-07-29 17:43:49 +0200
committerGitHub <noreply@github.com>2016-07-29 17:43:49 +0200
commite0cbb9d1ae6f35b4b44a8e1ed99e8a710c36a7d3 (patch)
tree7e0fff192b12dbddbf9c39d133ee433662727fa4 /Source/Core/InputCommon/ControllerInterface/evdev/evdev.h
parentfc85d8036f1bab0963b3a64278f8e4ea157b6dcf (diff)
parent135641404af9c52e433ef28dba4f86fa208f4365 (diff)
Merge pull request #3890 from leoetlino/evdev-hotplug
evdev: Add hotplug support
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/evdev/evdev.h')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/evdev/evdev.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/evdev/evdev.h b/Source/Core/InputCommon/ControllerInterface/evdev/evdev.h
index 081913fa8e..dc8e917e23 100644
--- a/Source/Core/InputCommon/ControllerInterface/evdev/evdev.h
+++ b/Source/Core/InputCommon/ControllerInterface/evdev/evdev.h
@@ -8,11 +8,14 @@
#include <string>
#include <vector>
+#include "InputCommon/ControllerInterface/ControllerInterface.h"
+
namespace ciface
{
namespace evdev
{
void Init();
+void Shutdown();
class evdevDevice : public Core::Device
{
@@ -62,6 +65,7 @@ private:
public:
void UpdateInput() override;
+ bool IsValid() const override;
evdevDevice(const std::string& devnode);
~evdevDevice();