mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-04-12 08:07:57 -05:00
22 lines
400 B
C++
22 lines
400 B
C++
// Copyright 2013 Dolphin Emulator Project
|
|
// Licensed under GPLv2
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "Common/CommonTypes.h"
|
|
#include "InputCommon/InputConfig.h"
|
|
#include "InputCommon/KeyboardStatus.h"
|
|
|
|
#pragma once
|
|
|
|
namespace Keyboard
|
|
{
|
|
|
|
void Shutdown();
|
|
void Initialize(void* const hwnd);
|
|
|
|
InputConfig* GetConfig();
|
|
|
|
void GetStatus(u8 _port, KeyboardStatus* _pKeyboardStatus);
|
|
|
|
}
|