From a45e8feeac303cff6cd181f8177c68eec3bbf8c1 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Sat, 24 Nov 2007 03:01:54 +0000 Subject: [PATCH] Inclusion guards for vlc_keys.h Why don't we use an enum in that file ??? --- include/vlc_keys.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/vlc_keys.h b/include/vlc_keys.h index 4d008e4468..4432f3454a 100644 --- a/include/vlc_keys.h +++ b/include/vlc_keys.h @@ -25,6 +25,9 @@ #error You are not libvlc or one of its plugins. You cannot include this file #endif +#ifndef _VLC_KEYS_H +#define _VLC_KEYS_H 1 + #define KEY_MODIFIER 0xFF000000 #define KEY_MODIFIER_ALT 0x01000000 #define KEY_MODIFIER_SHIFT 0x02000000 @@ -316,3 +319,5 @@ static inline int StringToKey( char *psz_key ) #define ACTIONID_MENU_UP 89 #define ACTIONID_MENU_DOWN 90 #define ACTIONID_MENU_SELECT 91 + +#endif -- 2.39.2