mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-07-09 21:26:54 -05:00
Replaces them with forward declarations of used types, or removes them entirely if they aren't used at all. This also replaces certain Common headers with less inclusive ones (in terms of definitions they pull in).
24 lines
385 B
C++
24 lines
385 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);
|
|
|
|
}
|