Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
0df5550c
Commit
0df5550c
authored
Nov 06, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Privatize appropriate module typedefs
parent
c94293c4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
include/vlc_common.h
include/vlc_common.h
+0
-3
src/modules/modules.h
src/modules/modules.h
+4
-2
No files found.
include/vlc_common.h
View file @
0df5550c
...
...
@@ -204,11 +204,8 @@ typedef struct services_discovery_sys_t services_discovery_sys_t;
typedef
struct
playlist_add_t
playlist_add_t
;
/* Modules */
typedef
struct
module_bank_t
module_bank_t
;
typedef
struct
module_t
module_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
;
...
...
src/modules/modules.h
View file @
0df5550c
...
...
@@ -24,12 +24,14 @@
#ifndef LIBVLC_MODULES_H
# define LIBVLC_MODULES_H 1
typedef
struct
module_cache_t
module_cache_t
;
/*****************************************************************************
* module_bank_t: the module bank
*****************************************************************************
* This variable is accessed by any function using modules.
*****************************************************************************/
struct
module_bank_t
typedef
struct
module_bank_t
{
unsigned
i_usage
;
...
...
@@ -44,7 +46,7 @@ struct module_bank_t
module_cache_t
**
pp_loaded_cache
;
module_t
*
head
;
};
}
module_bank_t
;
/*****************************************************************************
* Module cache description structure
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment