]> git.sesse.net Git - vlc/blobdiff - include/vlc_keys.h
pda gui: Set prio to 0, so it is not eligible for automatic selection. This is bad...
[vlc] / include / vlc_keys.h
index 2d0f516915ee2728d382eeba160d7b62cd5f58d4..3275fedf4856b0b78bcb316fa33fe9d9ef5439f7 100644 (file)
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
-#if !defined( __LIBVLC__ )
-  #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
 
@@ -233,7 +229,7 @@ static inline int StringToKey( char *psz_key )
     return 0;
 }
 
-enum {
+typedef enum vlc_key {
     ACTIONID_QUIT = 1,
     ACTIONID_PLAY_PAUSE,
     ACTIONID_PLAY,
@@ -336,5 +332,5 @@ enum {
     ACTIONID_ZOOM_DOUBLE,
     /* Cycle Through Audio Devices */
     ACTIONID_AUDIODEVICE_CYCLE
-};
+} vlc_key_t;
 #endif