blob: ebc151dd27b950c82414a69f8677a3ba3e83d3f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
#pragma once
#if defined(HAVE_WX) && HAVE_WX
#include <wx/string.h>
#endif
namespace InputCommon
{
#if defined(HAVE_WX) && HAVE_WX
const wxString WXKeyToString(int keycode);
const wxString WXKeymodToString(int modifier);
#endif
}
|