]> git.sesse.net Git - vlc/commitdiff
Use typedef around vlc_key enum
authorJean-Baptiste Kempf <jb@ambre.(none)>
Fri, 28 Mar 2008 23:14:42 +0000 (16:14 -0700)
committerJean-Baptiste Kempf <jb@ambre.(none)>
Fri, 28 Mar 2008 23:14:42 +0000 (16:14 -0700)
include/vlc_keys.h

index 2d0f516915ee2728d382eeba160d7b62cd5f58d4..d7b1d7d0db6d57ca00300ee4121b0ee546c5af8a 100644 (file)
@@ -233,7 +233,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 +336,5 @@ enum {
     ACTIONID_ZOOM_DOUBLE,
     /* Cycle Through Audio Devices */
     ACTIONID_AUDIODEVICE_CYCLE
-};
+} vlc_key_t;
 #endif