blob: e5b30a312fcc4d2f1097ead2ba0b28285a96deec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
// Copyright 2014 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#include "InputCommon/GCAdapter.h"
#include "Common/CommonTypes.h"
#include "InputCommon/GCPadStatus.h"
namespace GCAdapter
{
void Init()
{
}
void ResetRumble()
{
}
void Shutdown()
{
}
void SetAdapterCallback(std::function<void(void)> func)
{
}
void StartScanThread()
{
}
void StopScanThread()
{
}
GCPadStatus Input(int chan)
{
return {};
}
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
|