23 lines
443 B
C++
23 lines
443 B
C++
// Copyright 2013 Dolphin Emulator Project
|
|
// Licensed under GPLv2
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <X11/keysym.h>
|
|
#include <X11/X.h>
|
|
#if defined(HAVE_WX) && HAVE_WX
|
|
#include <wx/wx.h>
|
|
#endif
|
|
|
|
#include "Common/Common.h"
|
|
|
|
namespace InputCommon
|
|
{
|
|
#if defined(HAVE_WX) && HAVE_WX
|
|
KeySym wxCharCodeWXToX(int id);
|
|
int wxKeyModWXToX(int modstate);
|
|
#endif
|
|
void XKeyToString(unsigned int keycode, char *keyStr);
|
|
}
|