mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-30 17:46:48 +01:00
35 lines
661 B
C++
35 lines
661 B
C++
// Copyright 2008 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "Common/CommonTypes.h"
|
|
#include "InputCommon/ControllerInterface/Device.h"
|
|
|
|
class InputConfig;
|
|
enum class PadGroup;
|
|
struct GCPadStatus;
|
|
|
|
namespace ControllerEmu
|
|
{
|
|
class ControlGroup;
|
|
}
|
|
|
|
namespace Pad
|
|
{
|
|
void Shutdown();
|
|
void Initialize();
|
|
void LoadConfig();
|
|
bool IsInitialized();
|
|
|
|
InputConfig* GetConfig();
|
|
|
|
GCPadStatus GetStatus(int pad_num);
|
|
ControllerEmu::ControlGroup* GetGroup(int pad_num, PadGroup group);
|
|
void Rumble(int pad_num, ControlState strength);
|
|
void ResetRumble(int pad_num);
|
|
|
|
bool GetMicButton(int pad_num);
|
|
}
|