mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-05 21:39:39 -06:00
22 lines
359 B
C++
22 lines
359 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;
|
|
struct KeyboardStatus;
|
|
|
|
namespace Keyboard
|
|
{
|
|
void Shutdown();
|
|
void Initialize(void* const hwnd);
|
|
void LoadConfig();
|
|
|
|
InputConfig* GetConfig();
|
|
|
|
KeyboardStatus GetStatus(u8 port);
|
|
}
|