diff options
Diffstat (limited to 'base/keyboard_codes_win.h')
-rw-r--r-- | base/keyboard_codes_win.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/keyboard_codes_win.h b/base/keyboard_codes_win.h index f582205..4d3b4ab 100644 --- a/base/keyboard_codes_win.h +++ b/base/keyboard_codes_win.h @@ -9,7 +9,7 @@ namespace base { -enum { +typedef enum { VKEY_BACK = VK_BACK, VKEY_TAB = VK_TAB, VKEY_CLEAR = VK_CLEAR, @@ -177,7 +177,7 @@ enum { VKEY_PA1 = VK_PA1, VKEY_OEM_CLEAR = VK_OEM_CLEAR, VKEY_UNKNOWN = 0 -}; +} KeyboardCode; } // namespace views |