diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-12-19 22:49:45 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-12-19 22:49:45 +0000 |
commit | fc04ba3d88b3f84f6943f1201375b9fa6027ac14 (patch) | |
tree | b23d0219267f8373bd91b86e7891273b6ca9bc71 /include | |
parent | 3da75d744f304269d5dd105e541d2149b2cbadb8 (diff) | |
download | xine-lib-fc04ba3d88b3f84f6943f1201375b9fa6027ac14.tar.gz xine-lib-fc04ba3d88b3f84f6943f1201375b9fa6027ac14.tar.bz2 |
Add function that return an input plugin description from an identifier.
CVS patchset: 1277
CVS date: 2001/12/19 22:49:45
Diffstat (limited to 'include')
-rw-r--r-- | include/xine.h.tmpl.in | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/include/xine.h.tmpl.in b/include/xine.h.tmpl.in index aa3701fbc..488e4e1e8 100644 --- a/include/xine.h.tmpl.in +++ b/include/xine.h.tmpl.in @@ -28,7 +28,7 @@ \endverbatim */ /* - * $Id: xine.h.tmpl.in,v 1.68 2001/12/14 16:50:57 f1rmb Exp $ + * $Id: xine.h.tmpl.in,v 1.69 2001/12/19 22:49:45 f1rmb Exp $ * */ @@ -1373,7 +1373,17 @@ mrl_t **xine_get_browse_mrls (xine_t *self, char *plugin_id, char *start_mrl, in * Some input plugins can generate autoplay lists * returns a list of ids of these plugins. */ -char **xine_get_autoplay_input_plugin_ids (xine_t *self) ; +char **xine_get_autoplay_input_plugin_ids (xine_t *self); + +/** + * \fn char *xine_get_input_plugin_description(xine_t *self, char *plugin_id) + * \brief Request input plugin description + * \param self Current xine engine configuration ( #see xine_init() ) + * \param plugin_id Plugin identifier. + * \return Description string. + * + */ +char *xine_get_input_plugin_description(xine_t *self, char *plugin_id); /** * \fn char **xine_get_autoplay_mrls (xine_t *self, char *plugin_id, int *num_mrls) |