From 51b856d8c649477bd749e08815b7275c26b30698 Mon Sep 17 00:00:00 2001 From: aeb Date: Sun, 12 Mar 2000 03:59:45 +0000 Subject: [PATCH] Renamed 'new' args to 'new_h' for C++ compatibility. git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@9 53a565d1-3bb7-0310-b661-cf11e63c67ab --- src/raw1394.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/raw1394.h b/src/raw1394.h index 57dee74..81abb0a 100644 --- a/src/raw1394.h +++ b/src/raw1394.h @@ -77,7 +77,7 @@ int raw1394_loop_iterate(raw1394handle_t handle); */ typedef int (*bus_reset_handler_t)(raw1394handle_t); 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. @@ -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); 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 @@ -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, quadlet_t *data); 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); /*