mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-07 05:03:32 +01:00
![skidau](/assets/img/avatar_default.png)
- Simplified the locking mechanism when controllers were updated - Reloaded the config of the controls instead of re-initialising the control plugins - Fixed controls being unresponsive after the Refresh button was pressed - Disables the hotkeys while the controller config is open
23 lines
419 B
C++
23 lines
419 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);
|
|
void LoadConfig();
|
|
|
|
InputConfig* GetConfig();
|
|
|
|
void GetStatus(u8 _port, KeyboardStatus* _pKeyboardStatus);
|
|
|
|
}
|