summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorXANTRONIX Development2022-03-16 00:26:47 -0400
committerXANTRONIX Development2022-03-16 00:26:47 -0400
commitafbcc80972c175003d51c7a87015d597257efbbe (patch)
treebd434ec5e511073ce52ef19209a27935d334fb8f /include
parente8eeaba4104c7dd66a10c0bdc39559a5c6634db0 (diff)
downloadxas-afbcc80972c175003d51c7a87015d597257efbbe.tar.gz
xas-afbcc80972c175003d51c7a87015d597257efbbe.tar.bz2
xas-afbcc80972c175003d51c7a87015d597257efbbe.zip
Rename xas_object_set_bank() to set_entry()
Diffstat (limited to 'include')
-rw-r--r--include/xas/object.h6
1 files changed, 3 insertions, 3 deletions
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);