X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Finput_ext-intf.h;h=4a94aa24f5fc15000c1a36369006def8a910c8ab;hb=440f9992ee947ea5fd0debbf35fdd1011c6404b3;hp=9b51318ce276aecc7283641ec6c40e4cd8e232e2;hpb=1ffe943ec5e34e24199546b386114bb67586855a;p=vlc diff --git a/include/input_ext-intf.h b/include/input_ext-intf.h index 9b51318ce2..4a94aa24f5 100644 --- a/include/input_ext-intf.h +++ b/include/input_ext-intf.h @@ -4,7 +4,7 @@ * control the pace of reading. ***************************************************************************** * Copyright (C) 1999, 2000 VideoLAN - * $Id: input_ext-intf.h,v 1.37 2001/05/19 00:39:29 stef Exp $ + * $Id: input_ext-intf.h,v 1.38 2001/05/30 17:03:11 sam Exp $ * * Authors: Christophe Massiot * @@ -294,6 +294,14 @@ typedef struct input_thread_s * backwards (it's gonna be fun) */ void (* pf_seek)( struct input_thread_s *, off_t ); + /* Special callback functions */ + void (* pf_file_open ) ( struct input_thread_s * ); + void (* pf_file_close ) ( struct input_thread_s * ); +#if !defined( SYS_BEOS ) && !defined( SYS_NTO ) + void (* pf_network_open ) ( struct input_thread_s * ); + void (* pf_network_close ) ( struct input_thread_s * ); +#endif + i_p_config_t i_p_config; /* plugin configuration */ char * p_source;