[vlc-commits] modules: clarify docs for config attr
Lyndon Brown
git at videolan.org
Sat Sep 26 08:44:11 CEST 2020
vlc | branch: master | Lyndon Brown <jnqnfe at gmail.com> | Wed Apr 10 03:36:03 2019 +0100| [ddfc7684b55e81b11e178bf0a0ddde55c1c460ab] | committer: Rémi Denis-Courmont
modules: clarify docs for config attr
Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ddfc7684b55e81b11e178bf0a0ddde55c1c460ab
---
src/modules/modules.h | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/modules/modules.h b/src/modules/modules.h
index bfefd3e5c5..93cc1ca289 100644
--- a/src/modules/modules.h
+++ b/src/modules/modules.h
@@ -39,10 +39,10 @@ typedef struct vlc_plugin_t
*/
struct
{
- module_config_t *items; /**< Table of configuration parameters */
- size_t size; /**< Size of items table */
- size_t count; /**< Number of configuration items */
- size_t booleans; /**< Number of boolean config items */
+ module_config_t *items; /**< Table of configuration items */
+ size_t size; /**< Total count of all items */
+ size_t count; /**< Count of real options (excludes hints) */
+ size_t booleans; /**< Count of options that are of boolean type */
} conf;
#ifdef HAVE_DYNAMIC_PLUGINS
More information about the vlc-commits
mailing list