summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/GCAdapter_Null.cpp
blob: d7f13c29174e9868ed1bec306999d6f3cd2463b5 (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
// Copyright 2014 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.

#include "Common/CommonTypes.h"
#include "InputCommon/GCAdapter.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; }

} // end of namespace GCAdapter