summaryrefslogtreecommitdiff
path: root/src/xine-engine/xine_internal.h
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2001-07-24 18:04:22 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2001-07-24 18:04:22 +0000
commita0b3a159eedea7d6c0d2a4f623f1b764b5a9042b (patch)
tree0414681c1d3f2a857418476958af0d6aae85e0e3 /src/xine-engine/xine_internal.h
parentf8faac34066751a9220c6fa10a4574d33db9582a (diff)
downloadxine-lib-a0b3a159eedea7d6c0d2a4f623f1b764b5a9042b.tar.gz
xine-lib-a0b3a159eedea7d6c0d2a4f623f1b764b5a9042b.tar.bz2
just noticed the num_mrls parameter got lost on the way through the xine_engine to the gui so the gui had to rely on a NULL entry in autoplay/mrl lists which in turn leads to excessive use of re/malloc constructs in the input plugins. this should be fixed now
CVS patchset: 343 CVS date: 2001/07/24 18:04:22
Diffstat (limited to 'src/xine-engine/xine_internal.h')
-rw-r--r--src/xine-engine/xine_internal.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xine-engine/xine_internal.h b/src/xine-engine/xine_internal.h
index 6dc61410f..36914b64f 100644
--- a/src/xine-engine/xine_internal.h
+++ b/src/xine-engine/xine_internal.h
@@ -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_internal.h,v 1.33 2001/07/19 17:53:15 ehasenle Exp $
+ * $Id: xine_internal.h,v 1.34 2001/07/24 18:04:22 guenter Exp $
*
*/
@@ -289,7 +289,7 @@ char **xine_get_browsable_input_plugin_ids (xine_t *this) ;
*/
mrl_t **xine_get_browse_mrls (xine_t *this, char *plugin_id,
- char *start_mrl);
+ char *start_mrl, int *num_mrls);
/*
* autoplay support
@@ -304,7 +304,7 @@ char **xine_get_autoplay_input_plugin_ids (xine_t *this) ;
/*
* get autoplay MRL list for input plugin named <plugin_id>
*/
-char **xine_get_autoplay_mrls (xine_t *this, char *plugin_id);
+char **xine_get_autoplay_mrls (xine_t *this, char *plugin_id, int *num_mrls);
/*
* internal use only