All the new audio stuff.
[jog] / tx-socket.h
index f6e4d00..a461c59 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: tx-socket.h,v 1.1 2002/01/25 19:34:45 mdw Exp $
+ * $Id: tx-socket.h,v 1.2 2002/01/30 09:25:35 mdw Exp $
  *
  * Socket transport
  *
@@ -29,6 +29,9 @@
 /*----- Revision history --------------------------------------------------* 
  *
  * $Log: tx-socket.h,v $
+ * Revision 1.2  2002/01/30 09:25:35  mdw
+ * Minor modifications for the transport configuration change.
+ *
  * Revision 1.1  2002/01/25 19:34:45  mdw
  * Initial revision
  *
@@ -53,7 +56,7 @@
 
 /*----- Functions provided ------------------------------------------------*/
 
-extern txport *txsock_create(const char */*file*/, const char */*config*/);
+extern txport *txsock_create(const char */*file*/);
 extern void *txsock_fetch(void */*txv*/);
 extern ssize_t txsock_write(txport */*txg*/,
                            const void */*p*/, size_t /*sz*/);
@@ -68,7 +71,7 @@ extern void txsock_destroy(txport */*txg*/);
 
    static txport_ops txsock_ops = {
      TX_LIST, "socket", txsock_fv, 0,
-     txsock_create, txsock_fetch, txsock_write, txsock_destroy
+     txsock_create, 0, txsock_fetch, txsock_write, txsock_destroy
    };
 #  undef TX_LIST
 #  define TX_LIST &txsock_ops