lsnes/include/core/keymapper.hpp

30 lines
523 B
C++
Raw Normal View History

#ifndef _keymapper__hpp__included__
#define _keymapper__hpp__included__
#include <string>
#include <sstream>
#include <stdexcept>
#include <list>
#include <set>
#include <map>
#include <iostream>
#include "misc.hpp"
#include "library/keyboard.hpp"
#include "library/keymapper.hpp"
2011-09-18 01:26:45 +03:00
/**
* Our keyboard
2011-09-26 19:02:43 +03:00
*/
extern keyboard lsnes_kbd;
/**
* Our key mapper.
*/
extern keyboard_mapper lsnes_mapper;
2012-12-16 20:45:16 +02:00
/**
* Translate axis calibration into mode name.
*/
std::string calibration_to_mode(keyboard_axis_calibration p);
#endif