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
9f0974cb
Commit
9f0974cb
authored
Apr 21, 2010
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
module_t: repack again.
parent
9e90c99a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
src/modules/modules.h
src/modules/modules.h
+9
-9
No files found.
src/modules/modules.h
View file @
9f0974cb
...
...
@@ -93,11 +93,16 @@ typedef shl_t module_handle_t;
struct
module_t
{
char
*
psz_object_name
;
gc_object_t
vlc_gc_data
;
module_t
*
next
;
module_t
*
submodule
;
module_t
*
parent
;
module_t
*
submodule
;
unsigned
submodule_count
;
gc_object_t
vlc_gc_data
;
/** Shortcuts to the module */
int
i_shortcuts
;
char
**
pp_shortcuts
;
/*
* Variables set by the module to identify itself
...
...
@@ -106,13 +111,11 @@ struct module_t
char
*
psz_longname
;
/**< Module descriptive name */
char
*
psz_help
;
/**< Long help string for "special" modules */
/** Shortcuts to the module */
char
**
pp_shortcuts
;
int
i_shortcuts
;
char
*
psz_capability
;
/**< Capability */
int
i_score
;
/**< Score for the capability */
bool
b_builtin
;
/* Set to true if the module is built in */
bool
b_loaded
;
/* Set to true if the dll is loaded */
bool
b_unloadable
;
/**< Can we be dlclosed? */
bool
b_submodule
;
/**< Is this a submodule? */
...
...
@@ -135,9 +138,6 @@ struct module_t
module_handle_t
handle
;
/* Unique handle */
char
*
psz_filename
;
/* Module filename */
char
*
domain
;
/* gettext domain */
bool
b_builtin
;
/* Set to true if the module is built in */
bool
b_loaded
;
/* Set to true if the dll is loaded */
};
module_t
*
vlc_module_create
(
vlc_object_t
*
);
...
...
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