diff libaf/af.h @ 32418:71a04d45357c

Make af_reinit "public", to allow using it in future patches.
author reimar
date Sun, 17 Oct 2010 15:52:18 +0000
parents 12db4ae0b3d1
children a93891202051
line wrap: on
line diff
--- a/libaf/af.h	Sun Oct 17 15:30:14 2010 +0000
+++ b/libaf/af.h	Sun Oct 17 15:52:18 2010 +0000
@@ -163,6 +163,13 @@
 void af_uninit(af_stream_t* s);
 
 /**
+ * \brief  Reinit the filter list from the given filter on downwards
+ * \param  Filter instance to begin the reinit from
+ * \return AF_OK on success or AF_ERROR on failure
+ */
+int af_reinit(af_stream_t* s, af_instance_t* af);
+
+/**
  * \brief This function adds the filter "name" to the stream s.
  * \param name name of filter to add
  * \return pointer to the new filter, NULL if insert failed