diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/xine.h.in | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/include/xine.h.in b/include/xine.h.in index 2a1f0ce20..64ccedb4c 100644 --- a/include/xine.h.in +++ b/include/xine.h.in @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine.h.in,v 1.25 2002/10/24 19:37:27 guenter Exp $ + * $Id: xine.h.in,v 1.26 2002/10/24 22:54:27 guenter Exp $ * * public xine-lib (libxine) interface and documentation * @@ -487,6 +487,18 @@ char **xine_get_autoplay_mrls (xine_t *self, const char *plugin_id, int *num_mrls); +/* get a list of file extensions for file types supported by xine + * the list is separated by spaces + * + * the pointer returned can be free()ed when no longer used */ +char *xine_get_file_extensions (xine_t *self); + +/* get a list of mime types supported by xine + * + * the pointer returned can be free()ed when no longer used */ +char *xine_get_mime_types (xine_t *self); + + /* get a description string for an input plugin */ const char *xine_get_input_plugin_description (xine_t *self, const char *plugin_id); |