]> git.tdb.fi Git - libs/gui.git/blobdiff - source/input/keys.h
Add a game controller input device
[libs/gui.git] / source / input / keys.h
index e17459ae5f98d99e423ee1a789ac9d4ee34ef4e9..7d4822cae3647ffa51047fe5ebc6c41ddb08b012 100644 (file)
@@ -1,10 +1,3 @@
-/* $Id$
-
-This file is part of libmspgbase
-Copyright © 2007 Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef MSP_INPUT_KEYS_H_
 #define MSP_INPUT_KEYS_H_
 
@@ -13,6 +6,8 @@ namespace Input {
 
 enum
 {
+       KEY_NONE = 0x00,
+
        // Codes 0x01-0x7E reserved for ASCII
        KEY_BACKSPACE = 0x08,
        KEY_TAB = 0x09,
@@ -146,9 +141,6 @@ enum
        N_KEYS_ = 0x100
 };
 
-extern unsigned key_from_sys(unsigned);
-extern unsigned key_to_sys(unsigned);
-
 } // namespace Input
 } // namespace Msp