Commit a45e8fee authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Inclusion guards for vlc_keys.h

Why don't we use an enum in that file ???
parent ec79b5c8
...@@ -25,6 +25,9 @@ ...@@ -25,6 +25,9 @@
#error You are not libvlc or one of its plugins. You cannot include this file #error You are not libvlc or one of its plugins. You cannot include this file
#endif #endif
#ifndef _VLC_KEYS_H
#define _VLC_KEYS_H 1
#define KEY_MODIFIER 0xFF000000 #define KEY_MODIFIER 0xFF000000
#define KEY_MODIFIER_ALT 0x01000000 #define KEY_MODIFIER_ALT 0x01000000
#define KEY_MODIFIER_SHIFT 0x02000000 #define KEY_MODIFIER_SHIFT 0x02000000
...@@ -316,3 +319,5 @@ static inline int StringToKey( char *psz_key ) ...@@ -316,3 +319,5 @@ static inline int StringToKey( char *psz_key )
#define ACTIONID_MENU_UP 89 #define ACTIONID_MENU_UP 89
#define ACTIONID_MENU_DOWN 90 #define ACTIONID_MENU_DOWN 90
#define ACTIONID_MENU_SELECT 91 #define ACTIONID_MENU_SELECT 91
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment