Skip to content
Snippets Groups Projects
Commit 0db30968 authored by Lyndon Brown's avatar Lyndon Brown Committed by Hugo Beauzée-Luyssen
Browse files

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.
parent 74046ea9
No related branches found
No related tags found
No related merge requests found
......@@ -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 */
......
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment