Commit 0df5550c authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Privatize appropriate module typedefs

parent c94293c4
...@@ -204,11 +204,8 @@ typedef struct services_discovery_sys_t services_discovery_sys_t; ...@@ -204,11 +204,8 @@ typedef struct services_discovery_sys_t services_discovery_sys_t;
typedef struct playlist_add_t playlist_add_t; typedef struct playlist_add_t playlist_add_t;
/* Modules */ /* Modules */
typedef struct module_bank_t module_bank_t;
typedef struct module_t module_t; typedef struct module_t module_t;
typedef struct module_config_t module_config_t; typedef struct module_config_t module_config_t;
typedef struct module_symbols_t module_symbols_t;
typedef struct module_cache_t module_cache_t;
typedef struct config_category_t config_category_t; typedef struct config_category_t config_category_t;
......
...@@ -24,12 +24,14 @@ ...@@ -24,12 +24,14 @@
#ifndef LIBVLC_MODULES_H #ifndef LIBVLC_MODULES_H
# define LIBVLC_MODULES_H 1 # define LIBVLC_MODULES_H 1
typedef struct module_cache_t module_cache_t;
/***************************************************************************** /*****************************************************************************
* module_bank_t: the module bank * module_bank_t: the module bank
***************************************************************************** *****************************************************************************
* This variable is accessed by any function using modules. * This variable is accessed by any function using modules.
*****************************************************************************/ *****************************************************************************/
struct module_bank_t typedef struct module_bank_t
{ {
unsigned i_usage; unsigned i_usage;
...@@ -44,7 +46,7 @@ struct module_bank_t ...@@ -44,7 +46,7 @@ struct module_bank_t
module_cache_t **pp_loaded_cache; module_cache_t **pp_loaded_cache;
module_t *head; module_t *head;
}; } module_bank_t;
/***************************************************************************** /*****************************************************************************
* Module cache description structure * Module cache description structure
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment