Browse Source

config: move struct to where it belongs

it is used only to define the structure of `categories_array` which
lives in `vlc_config_cat.h`; it belongs next to that.
pull/132/head
Lyndon Brown 7 years ago
committed by Hugo Beauzée-Luyssen
parent
commit
0db3096825
  1. 7
      include/vlc_config_cat.h
  2. 7
      include/vlc_configuration.h

7
include/vlc_config_cat.h

@ -192,6 +192,13 @@
#define ANETWORK_TITLE N_( "Network" )
#define ANETWORK_HELP N_( "Advanced network settings." )
struct config_category_t
{
int i_id;
const char *psz_name;
const char *psz_help;
};
static const struct config_category_t categories_array[] =
{
/* Interface */

7
include/vlc_configuration.h

@ -49,13 +49,6 @@
extern "C" {
# endif
struct config_category_t
{
int i_id;
const char *psz_name;
const char *psz_help;
};
typedef union
{
char *psz;

Loading…
Cancel
Save