Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
450
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
d3a795e8
Commit
d3a795e8
authored
3 years ago
by
Rémi Denis-Courmont
Committed by
Hugo Beauzée-Luyssen
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
modules: improve module_list_cap() documentation
parent
d155c5eb
No related branches found
Branches containing commit
No related tags found
1 merge request
!1452
modules: fix aliasing violations
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/modules/modules.h
+10
-5
10 additions, 5 deletions
src/modules/modules.h
with
10 additions
and
5 deletions
src/modules/modules.h
+
10
−
5
View file @
d3a795e8
...
...
@@ -121,13 +121,18 @@ void *vlc_plugin_Symbol(struct vlc_logger *, vlc_plugin_t *, const char *name);
/**
* Lists of all VLC modules with a given capability.
*
* The list is sorted by decreasing module score.
* This functions returns a table of all VLC modules whose capability
* matches the supplied capability name. Entries are sorted by decreasing
* module score.
*
* @param list pointer to the table of modules [OUT]
* @param name name of capability of modules to look for
* @return the number of modules in the list (possibly zero)
* \note This function cannot fail. It returns zero if, and only if, no
* modules match the requested capability inside the module bank.
*
* @param tab pointer to the table of modules [OUT]
* @param name capability nul-terminated string (cannot be NULL)
* @return the number of entries in the table
*/
size_t
module_list_cap
(
module_t
*
const
**
,
const
char
*
);
size_t
module_list_cap
(
module_t
*
const
**
tab
,
const
char
*
name
);
int
vlc_bindtextdomain
(
const
char
*
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment