summaryrefslogtreecommitdiff
path: root/src/SDL2/include/SDL_keycode.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/SDL2/include/SDL_keycode.h')
-rw-r--r--src/SDL2/include/SDL_keycode.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/SDL2/include/SDL_keycode.h b/src/SDL2/include/SDL_keycode.h
index a020b161..de584e12 100644
--- a/src/SDL2/include/SDL_keycode.h
+++ b/src/SDL2/include/SDL_keycode.h
@@ -1,6 +1,6 @@
/*
Simple DirectMedia Layer
- Copyright (C) 1997-2012 Sam Lantinga <slouken@libsdl.org>
+ Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
@@ -21,7 +21,7 @@
/**
* \file SDL_keycode.h
- *
+ *
* Defines constants which identify keyboard keys and modifiers.
*/
@@ -33,7 +33,7 @@
/**
* \brief The SDL virtual key representation.
- *
+ *
* Values of this type are used to represent keyboard keys using the current
* layout of the keyboard. These values include Unicode values representing
* the unmodified character that would be generated by pressing the key, or
@@ -42,7 +42,7 @@
typedef Sint32 SDL_Keycode;
#define SDLK_SCANCODE_MASK (1<<30)
-#define SDL_SCANCODE_TO_KEYCODE(X) (X | SDLK_SCANCODE_MASK)
+#define SDL_SCANCODE_TO_KEYCODE(X) (X | SDLK_SCANCODE_MASK)
enum
{
@@ -85,7 +85,7 @@ enum
SDLK_GREATER = '>',
SDLK_QUESTION = '?',
SDLK_AT = '@',
- /*
+ /*
Skip uppercase letters
*/
SDLK_LEFTBRACKET = '[',
@@ -331,10 +331,10 @@ typedef enum
KMOD_RESERVED = 0x8000
} SDL_Keymod;
-#define KMOD_CTRL (KMOD_LCTRL|KMOD_RCTRL)
-#define KMOD_SHIFT (KMOD_LSHIFT|KMOD_RSHIFT)
-#define KMOD_ALT (KMOD_LALT|KMOD_RALT)
-#define KMOD_GUI (KMOD_LGUI|KMOD_RGUI)
+#define KMOD_CTRL (KMOD_LCTRL|KMOD_RCTRL)
+#define KMOD_SHIFT (KMOD_LSHIFT|KMOD_RSHIFT)
+#define KMOD_ALT (KMOD_LALT|KMOD_RALT)
+#define KMOD_GUI (KMOD_LGUI|KMOD_RGUI)
#endif /* _SDL_keycode_h */