diff options
Diffstat (limited to 'src/input/input_plugin.h')
-rw-r--r-- | src/input/input_plugin.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/input/input_plugin.h b/src/input/input_plugin.h index fa4e0a656..c6aa19131 100644 --- a/src/input/input_plugin.h +++ b/src/input/input_plugin.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: input_plugin.h,v 1.11 2001/08/16 12:33:00 ehasenle Exp $ + * $Id: input_plugin.h,v 1.12 2001/08/17 16:15:36 f1rmb Exp $ */ #ifndef HAVE_INPUT_PLUGIN_H @@ -33,7 +33,7 @@ extern "C" { #include "buffer.h" #include "configfile.h" -#define INPUT_PLUGIN_IFACE_VERSION 2 +#define INPUT_PLUGIN_IFACE_VERSION 3 /* * Return pointer of allocate/cleaned memory size *size*. @@ -234,6 +234,12 @@ struct input_plugin_s /* + * stop input source + */ + void (*stop) (input_plugin_t *this); + + + /* * close input source */ void (*close) (input_plugin_t *this); |