From afbcc80972c175003d51c7a87015d597257efbbe Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Wed, 16 Mar 2022 00:26:47 -0400 Subject: Rename xas_object_set_bank() to set_entry() --- include/xas/object.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/xas') diff --git a/include/xas/object.h b/include/xas/object.h index 6ca515e..5780c7d 100644 --- a/include/xas/object.h +++ b/include/xas/object.h @@ -13,7 +13,7 @@ typedef int (*xas_object_set_gain_callback)(xas_object *object, float gain); typedef int (*xas_object_set_freq_callback)(xas_object *object, size_t freq); -typedef int (*xas_object_set_bank_callback)(xas_object *object, size_t bank); +typedef int (*xas_object_set_entry_callback)(xas_object *object, size_t entry); typedef int (*xas_object_set_flags_callback)(xas_object *object, int flags); @@ -25,7 +25,7 @@ struct _xas_object { xas_object_start_callback start; xas_object_stop_callback stop; xas_object_set_gain_callback set_gain; - xas_object_set_bank_callback set_bank; + xas_object_set_entry_callback set_entry; xas_object_set_freq_callback set_freq; xas_object_set_flags_callback set_flags; xas_object_stream_new_callback stream_new; @@ -40,7 +40,7 @@ int xas_object_stop(xas_object *object); int xas_object_set_gain(xas_object *object, float gain); -int xas_object_set_bank(xas_object *object, size_t bank); +int xas_object_set_entry(xas_object *object, size_t entry); int xas_object_set_freq(xas_object *object, size_t freq); -- cgit v1.2.3