mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-01 21:52:41 +02:00

SPDX standardizes how source code conveys its copyright and licensing information. See https://spdx.github.io/spdx-spec/1-rationale/ . SPDX tags are adopted in many large projects, including things like the Linux kernel.
28 lines
489 B
C++
28 lines
489 B
C++
// Copyright 2008 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#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
|