Renamed 'new' args to 'new_h' for C++ compatibility.
git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@9 53a565d1-3bb7-0310-b661-cf11e63c67ab
This commit is contained in:
parent
dca3a5a3d3
commit
51b856d8c6
|
@ -77,7 +77,7 @@ int raw1394_loop_iterate(raw1394handle_t handle);
|
||||||
*/
|
*/
|
||||||
typedef int (*bus_reset_handler_t)(raw1394handle_t);
|
typedef int (*bus_reset_handler_t)(raw1394handle_t);
|
||||||
bus_reset_handler_t raw1394_set_bus_reset_handler(raw1394handle_t handle,
|
bus_reset_handler_t raw1394_set_bus_reset_handler(raw1394handle_t handle,
|
||||||
bus_reset_handler_t new);
|
bus_reset_handler_t new_h);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Set the handler that will be called when an async read/write/lock returns.
|
* Set the handler that will be called when an async read/write/lock returns.
|
||||||
|
@ -86,7 +86,7 @@ bus_reset_handler_t raw1394_set_bus_reset_handler(raw1394handle_t handle,
|
||||||
*/
|
*/
|
||||||
typedef int (*tag_handler_t)(raw1394handle_t, unsigned long tag, int errcode);
|
typedef int (*tag_handler_t)(raw1394handle_t, unsigned long tag, int errcode);
|
||||||
tag_handler_t raw1394_set_tag_handler(raw1394handle_t handle,
|
tag_handler_t raw1394_set_tag_handler(raw1394handle_t handle,
|
||||||
tag_handler_t new);
|
tag_handler_t new_h);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Set the handler that will be called when an iso packet arrives (data points
|
* Set the handler that will be called when an iso packet arrives (data points
|
||||||
|
@ -101,7 +101,8 @@ tag_handler_t raw1394_set_tag_handler(raw1394handle_t handle,
|
||||||
typedef int (*iso_handler_t)(raw1394handle_t, int channel, size_t length,
|
typedef int (*iso_handler_t)(raw1394handle_t, int channel, size_t length,
|
||||||
quadlet_t *data);
|
quadlet_t *data);
|
||||||
iso_handler_t raw1394_set_iso_handler(raw1394handle_t handle,
|
iso_handler_t raw1394_set_iso_handler(raw1394handle_t handle,
|
||||||
unsigned int channel, iso_handler_t new);
|
unsigned int channel,
|
||||||
|
iso_handler_t new_h);
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Reference in New Issue