mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-26 18:20:44 +00:00
plugin: Annotate add_dependency() arguments as NULL-terminated arrays
This commit is contained in:
parent
52d2891fe3
commit
f85e93d004
1 changed files with 3 additions and 3 deletions
|
@ -1812,15 +1812,15 @@ gst_plugin_ext_dep_equals (GstPluginDep * dep, const gchar ** env_vars,
|
||||||
/**
|
/**
|
||||||
* gst_plugin_add_dependency:
|
* gst_plugin_add_dependency:
|
||||||
* @plugin: a #GstPlugin
|
* @plugin: a #GstPlugin
|
||||||
* @env_vars: (allow-none): %NULL-terminated array of environment variables affecting the
|
* @env_vars: (allow-none) (array zero-terminated=1): %NULL-terminated array of environment variables affecting the
|
||||||
* feature set of the plugin (e.g. an environment variable containing
|
* feature set of the plugin (e.g. an environment variable containing
|
||||||
* paths where to look for additional modules/plugins of a library),
|
* paths where to look for additional modules/plugins of a library),
|
||||||
* or %NULL. Environment variable names may be followed by a path component
|
* or %NULL. Environment variable names may be followed by a path component
|
||||||
* which will be added to the content of the environment variable, e.g.
|
* which will be added to the content of the environment variable, e.g.
|
||||||
* "HOME/.mystuff/plugins".
|
* "HOME/.mystuff/plugins".
|
||||||
* @paths: (allow-none): %NULL-terminated array of directories/paths where dependent files
|
* @paths: (allow-none) (array zero-terminated=1): %NULL-terminated array of directories/paths where dependent files
|
||||||
* may be, or %NULL.
|
* may be, or %NULL.
|
||||||
* @names: (allow-none): %NULL-terminated array of file names (or file name suffixes,
|
* @names: (allow-none) (array zero-terminated=1): %NULL-terminated array of file names (or file name suffixes,
|
||||||
* depending on @flags) to be used in combination with the paths from
|
* depending on @flags) to be used in combination with the paths from
|
||||||
* @paths and/or the paths extracted from the environment variables in
|
* @paths and/or the paths extracted from the environment variables in
|
||||||
* @env_vars, or %NULL.
|
* @env_vars, or %NULL.
|
||||||
|
|
Loading…
Reference in a new issue