src/fifo.h
branchnew-transport
changeset 155 c59d3eaff0fb
parent 154 f4472119de3b
child 157 1e5674d0eec4
--- a/src/fifo.h	Tue Apr 28 17:52:48 2009 +0300
+++ b/src/fifo.h	Tue Apr 28 20:27:45 2009 +0300
@@ -8,11 +8,11 @@
  *
  * The transport will be ready for use right away, transport_callbacks::on_connect will never be called.
  *
- * @param transport the unconnected transport.
+ * @param transport_ptr returned transport
  * @param path the path to the filesystem fifo object
  * @param err returned error info
  */
-err_t fifo_open_read (transport_t *transport, const char *path, error_t *err);
+err_t fifo_open_read (transport_t **transport_ptr, const char *path, error_t *err);
 
 
 #endif