Files
dolphin/Source/Core/InputCommon/GCAdapter_Null.cpp
T

27 lines
683 B
C++
Raw Normal View History

2016-01-06 00:57:08 -06:00
// Copyright 2014 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
2016-01-12 22:34:13 -05:00
#include "Common/CommonTypes.h"
2016-01-06 00:57:08 -06:00
#include "InputCommon/GCAdapter.h"
2016-01-12 22:34:13 -05:00
2016-01-06 00:57:08 -06:00
namespace GCAdapter
{
2016-01-12 22:34:13 -05:00
2016-01-06 00:57:08 -06:00
void Init() {}
void Reset() {}
void ResetRumble() {}
void Setup() {}
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