]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/keycode.h
Check the data path before usage
[dragonfireclient.git] / src / keycode.h
index 4201debc4b3417331625f85bdb0d99c3a2032fe9..9c62004d8f744644185d61ad4ded8bfab9abb4a1 100644 (file)
@@ -17,11 +17,18 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */
 
+#ifndef KEYCODE_HEADER
+#define KEYCODE_HEADER
+
 #include "common_irrlicht.h"
+#include <string>
 
 irr::EKEY_CODE keyname_to_keycode(const char *name);
 
 // Key configuration getter
 irr::EKEY_CODE getKeySetting(const char *settingname);
+std::string keycode_to_keyname(s32 keycode);
+void clearCache();
 
+#endif