2016-01-06 06:57:08 +00:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2016-01-13 03:34:13 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2016-01-06 06:57:08 +00:00
|
|
|
#include "InputCommon/GCAdapter.h"
|
2016-01-13 03:34:13 +00:00
|
|
|
|
2016-01-06 06:57:08 +00:00
|
|
|
namespace GCAdapter
|
|
|
|
{
|
2016-01-13 03:34:13 +00:00
|
|
|
|
2016-01-06 06:57:08 +00:00
|
|
|
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
|