diff options
Diffstat (limited to 'Source/Core/InputCommon/GCAdapter_Null.cpp')
| -rw-r--r-- | Source/Core/InputCommon/GCAdapter_Null.cpp | 57 |
1 files changed, 42 insertions, 15 deletions
diff --git a/Source/Core/InputCommon/GCAdapter_Null.cpp b/Source/Core/InputCommon/GCAdapter_Null.cpp index d7f13c2917..bb9422807b 100644 --- a/Source/Core/InputCommon/GCAdapter_Null.cpp +++ b/Source/Core/InputCommon/GCAdapter_Null.cpp @@ -2,23 +2,50 @@ // Licensed under GPLv2+ // Refer to the license.txt file included. -#include "Common/CommonTypes.h" #include "InputCommon/GCAdapter.h" +#include "Common/CommonTypes.h" namespace GCAdapter { +void Init() +{ +} +void ResetRumble() +{ +} +void Shutdown() +{ +} +void SetAdapterCallback(std::function<void(void)> func) +{ +} +void StartScanThread() +{ +} +void StopScanThread() +{ +} +void Input(int chan, GCPadStatus* pad) +{ +} +void Output(int chan, u8 rumble_command) +{ +} +bool IsDetected() +{ + return false; +} +bool IsDriverDetected() +{ + return false; +} +bool DeviceConnected(int chan) +{ + return false; +} +bool UseAdapter() +{ + return false; +} -void Init() {} -void ResetRumble() {} -void Shutdown() {} -void SetAdapterCallback(std::function<void(void)> func) {} -void StartScanThread() {} -void StopScanThread() {} -void Input(int chan, GCPadStatus* pad) {} -void Output(int chan, u8 rumble_command) {} -bool IsDetected() { return false; } -bool IsDriverDetected() { return false; } -bool DeviceConnected(int chan) { return false; } -bool UseAdapter() { return false; } - -} // end of namespace GCAdapter +} // end of namespace GCAdapter |
