From: Laurent Aimar Date: Mon, 22 Nov 2004 09:52:06 +0000 (+0000) Subject: input: added INPUT_ADD_SLAVE to allow adding a slave input on the fly. (Don't use... X-Git-Tag: 0.8.2~1626 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=bb2cb752f42084fff55bdbf3422126247a418224;p=vlc input: added INPUT_ADD_SLAVE to allow adding a slave input on the fly. (Don't use without a real reason). --- diff --git a/include/vlc_input.h b/include/vlc_input.h index ebee79b7cb..bf988a87f1 100644 --- a/include/vlc_input.h +++ b/include/vlc_input.h @@ -447,6 +447,9 @@ enum input_query_e INPUT_CHANGE_BOOKMARK, /* arg1= seekpoint_t * arg2= int * res=can fail */ INPUT_DEL_BOOKMARK, /* arg1= seekpoint_t * res=can fail */ INPUT_SET_BOOKMARK, /* arg1= int res=can fail */ + + /* On the fly input slave */ + INPUT_ADD_SLAVE, /* arg1= char * */ }; VLC_EXPORT( int, input_vaControl,( input_thread_t *, int i_query, va_list ) );