From a0c8e92cf49f8edbdb05eb1720545b2161561a04 Mon Sep 17 00:00:00 2001 From: aeb Date: Fri, 1 Sep 2000 15:15:57 +0000 Subject: [PATCH] Added missing prototypes for iso send functions. git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@36 53a565d1-3bb7-0310-b661-cf11e63c67ab --- src/raw1394.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/raw1394.h b/src/raw1394.h index 9c8fae6..2e080e5 100644 --- a/src/raw1394.h +++ b/src/raw1394.h @@ -149,6 +149,10 @@ int raw1394_start_write(raw1394handle_t handle, nodeid_t node, nodeaddr_t addr, int raw1394_start_lock(struct raw1394_handle *handle, nodeid_t node, nodeaddr_t addr, unsigned int extcode, quadlet_t data, quadlet_t arg, quadlet_t *result, unsigned long tag); +int raw1394_start_iso_write(struct raw1394_handle *handle, unsigned int channel, + unsigned int tag, unsigned int sy, + unsigned int speed, size_t length, quadlet_t *data, + unsigned long rawtag); /* * This does the complete transaction and will return when it's finished. It @@ -162,6 +166,9 @@ int raw1394_write(raw1394handle_t handle, nodeid_t node, nodeaddr_t addr, int raw1394_lock(struct raw1394_handle *handle, nodeid_t node, nodeaddr_t addr, unsigned int extcode, quadlet_t data, quadlet_t arg, quadlet_t *result); +int raw1394_iso_write(struct raw1394_handle *handle, unsigned int channel, + unsigned int tag, unsigned int sy, unsigned int speed, + size_t length, quadlet_t *data); /* * Start and stop receiving a certain isochronous channel. You have to set an