diff options
author | XANTRONIX Development | 2022-02-28 13:09:14 -0500 |
---|---|---|
committer | XANTRONIX Development | 2022-02-28 13:09:14 -0500 |
commit | 1abc73e474f8811ade6a9573a8083fecfbfecc04 (patch) | |
tree | be227755742e92161f8586cf4db0a8f3f5de1834 /include | |
parent | 3c6872ccab4dcddc6ab6df7d17df3394964a6e46 (diff) | |
download | xas-1abc73e474f8811ade6a9573a8083fecfbfecc04.tar.gz xas-1abc73e474f8811ade6a9573a8083fecfbfecc04.tar.bz2 xas-1abc73e474f8811ade6a9573a8083fecfbfecc04.zip |
Add gain setting callback to xas_object
Diffstat (limited to 'include')
-rw-r--r-- | include/xas/object.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/include/xas/object.h b/include/xas/object.h index b8b713b..19a479a 100644 --- a/include/xas/object.h +++ b/include/xas/object.h @@ -7,13 +7,18 @@ typedef int (*xas_object_start_callback)(xas_object *object); typedef int (*xas_object_stop_callback)(xas_object *object); +typedef int (*xas_object_set_gain_callback)(xas_object *object, float gain); + struct _xas_object { - xas_object_start_callback start; - xas_object_stop_callback stop; + xas_object_start_callback start; + xas_object_stop_callback stop; + xas_object_set_gain_callback set_gain; }; int xas_object_start(xas_object *object); int xas_object_stop(xas_object *object); +int xas_object_set_gain(xas_object *object, float gain); + #endif /* _XAS_OBJECT_H */ |