]> git.sesse.net Git - vlc/blobdiff - include/vlc_config_cat.h
Constify es_out_Add es_format_t* argument.
[vlc] / include / vlc_config_cat.h
index c259afcd0a5c7fc24d140bbf90de99fb966d4ffe..99fac9f46af869906145739a02fc26508bb3bfa6 100644 (file)
@@ -22,8 +22,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
-#ifndef _VLC_HELP_H
-#define _VLC_HELP_H 1
+#ifndef VLC_HELP_H
+#define VLC_HELP_H 1
 
 /*
  *  First, we need help strings for the General Settings and for the
 #define UNKNOWN_HELP N_("There is no help available for these modules.")
 
 /* This function is deprecated and is kept only for compatibility */
-static inline const char * GetCapabilityHelp( char *psz_capability, int i_type)
-{
-    (void)psz_capability; (void)i_type;
-    return " ";
-}
-
 static const struct config_category_t categories_array[] =
 {
     /* Interface */
@@ -292,6 +286,7 @@ static const struct config_category_t categories_array[] =
     { -1, NULL, NULL }
 };
 
+LIBVLC_USED
 static inline const char *config_CategoryNameGet( int i_value )
 {
     int i = 0 ;
@@ -306,6 +301,7 @@ static inline const char *config_CategoryNameGet( int i_value )
     return NULL;
 }
 
+LIBVLC_USED
 static inline const char *config_CategoryHelpGet( int i_value )
 {
     int i = 0 ;