Move SI_GCAdapter over to InputCommon

This commit is contained in:
Ryan Houdek
2015-12-31 10:27:51 -06:00
parent 0da8bd0f61
commit 371e9f4fae
12 changed files with 27 additions and 35 deletions

View File

@ -0,0 +1,27 @@
// Copyright 2014 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include <functional>
struct GCPadStatus;
namespace SI_GCAdapter
{
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();
bool IsDriverDetected();
} // end of namespace SI_GCAdapter