diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/xas/object.h | 6 |
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); |