mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-14 15:32:48 -06:00
24 lines
386 B
C++
24 lines
386 B
C++
// Copyright 2013 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
class InputConfig;
|
|
struct KeyboardStatus;
|
|
|
|
namespace Keyboard
|
|
{
|
|
|
|
void Shutdown();
|
|
void Initialize(void* const hwnd);
|
|
void LoadConfig();
|
|
|
|
InputConfig* GetConfig();
|
|
|
|
void GetStatus(u8 _port, KeyboardStatus* _pKeyboardStatus);
|
|
|
|
}
|