mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-11 00:29:11 +01:00
29 lines
512 B
C++
29 lines
512 B
C++
// Copyright 2008 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
class InputConfig;
|
|
enum class KeyboardGroup;
|
|
struct KeyboardStatus;
|
|
|
|
namespace ControllerEmu
|
|
{
|
|
class ControlGroup;
|
|
}
|
|
|
|
namespace Keyboard
|
|
{
|
|
void Shutdown();
|
|
void Initialize();
|
|
void LoadConfig();
|
|
|
|
InputConfig* GetConfig();
|
|
ControllerEmu::ControlGroup* GetGroup(int port, KeyboardGroup group);
|
|
|
|
KeyboardStatus GetStatus(int port);
|
|
} // namespace Keyboard
|