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