summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/DualShockUDPClient/DualShockUDPClient.h
diff options
context:
space:
mode:
authorJordan Woyak <jordan.woyak@gmail.com>2022-10-22 17:33:21 -0500
committerJordan Woyak <jordan.woyak@gmail.com>2022-11-01 21:59:09 -0500
commit168a49c87ffbd05512c20db9735b3cb92afac93b (patch)
treebaf10daa35b4503ad241e7489905c5106f367ba6 /Source/Core/InputCommon/ControllerInterface/DualShockUDPClient/DualShockUDPClient.h
parent2e5cd5d51970fd90e87e54d53fe904cf9d777139 (diff)
ControllerInterface: DSU InputBackend implementation.
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/DualShockUDPClient/DualShockUDPClient.h')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/DualShockUDPClient/DualShockUDPClient.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/DualShockUDPClient/DualShockUDPClient.h b/Source/Core/InputCommon/ControllerInterface/DualShockUDPClient/DualShockUDPClient.h
index 1a2c2826ca..7f2d62fb58 100644
--- a/Source/Core/InputCommon/ControllerInterface/DualShockUDPClient/DualShockUDPClient.h
+++ b/Source/Core/InputCommon/ControllerInterface/DualShockUDPClient/DualShockUDPClient.h
@@ -4,6 +4,7 @@
#pragma once
#include "Common/Config/Config.h"
+#include "InputCommon/ControllerInterface/InputBackend.h"
namespace ciface::DualShockUDPClient
{
@@ -20,7 +21,6 @@ extern const Config::Info<std::string> SERVERS;
extern const Config::Info<bool> SERVERS_ENABLED;
} // namespace Settings
-void Init();
-void PopulateDevices();
-void DeInit();
+std::unique_ptr<ciface::InputBackend> CreateInputBackend(ControllerInterface* controller_interface);
+
} // namespace ciface::DualShockUDPClient