summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2002-10-24 22:54:27 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2002-10-24 22:54:27 +0000
commit04a3a7eb7f34f3414a5806a2da0443c6ab7636d7 (patch)
tree923e597d2cd61941cc3bb993b71440c26d5f3547 /include
parent5dc69537d5a2ad66dff6255b5c221f247a7da8d6 (diff)
downloadxine-lib-04a3a7eb7f34f3414a5806a2da0443c6ab7636d7.tar.gz
xine-lib-04a3a7eb7f34f3414a5806a2da0443c6ab7636d7.tar.bz2
xine_get_file_extensions and xine_get_mime_types functions added
CVS patchset: 2993 CVS date: 2002/10/24 22:54:27
Diffstat (limited to 'include')
-rw-r--r--include/xine.h.in14
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);