2013-04-17 21:43:35 -06:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2010-06-03 12:05:08 -06:00
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2010-06-03 12:05:08 -06:00
|
|
|
|
2010-06-06 15:06:58 -06:00
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
2014-02-22 15:36:30 -07:00
|
|
|
#include <wx/string.h>
|
2010-06-06 15:06:58 -06:00
|
|
|
#endif
|
2010-06-03 12:05:08 -06:00
|
|
|
|
|
|
|
namespace InputCommon
|
|
|
|
{
|
2010-06-06 15:06:58 -06:00
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
2010-06-05 13:03:37 -06:00
|
|
|
const wxString WXKeyToString(int keycode);
|
|
|
|
const wxString WXKeymodToString(int modifier);
|
2010-06-06 15:06:58 -06:00
|
|
|
#endif
|
2010-06-03 12:05:08 -06:00
|
|
|
}
|