diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2016-06-24 10:43:46 +0200 |
|---|---|---|
| committer | Pierre Bourdon <delroth@gmail.com> | 2016-06-24 10:43:46 +0200 |
| commit | 3570c7f03a2aa90aa634f96c0af1969af610f14d (patch) | |
| tree | 4252e03c0e853ba7cffe022937698c854ad0eaa9 /Source/Core/InputCommon/GCAdapter_Null.cpp | |
| parent | 2115e8a4a6814e32107b5205ff5c95bbd3c6e99c (diff) | |
Reformat all the things. Have fun with merge conflicts.
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 |
