diff options
author | XANTRONIX Development | 2022-02-27 01:03:44 -0500 |
---|---|---|
committer | XANTRONIX Development | 2022-02-27 01:03:44 -0500 |
commit | 69d3def8de3cb36076aef6e0c6f9b471c545f6d6 (patch) | |
tree | ea378682c79e3aa383cbcb2393c457b46b09076c /include/xas | |
parent | 455efe0d2d06e37569631089843e38cadee5cc4a (diff) | |
download | xas-69d3def8de3cb36076aef6e0c6f9b471c545f6d6.tar.gz xas-69d3def8de3cb36076aef6e0c6f9b471c545f6d6.tar.bz2 xas-69d3def8de3cb36076aef6e0c6f9b471c545f6d6.zip |
Implement methods for writing settings to tmpfile
Diffstat (limited to 'include/xas')
-rw-r--r-- | include/xas/vox.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/xas/vox.h b/include/xas/vox.h index 7aa43e4..5a1cacf 100644 --- a/include/xas/vox.h +++ b/include/xas/vox.h @@ -54,6 +54,18 @@ int xas_vox_set_parameter(xas_vox *vox, const char *name, const char *value); +int xas_vox_set_parameter_str(xas_vox *vox, + const char *name, + const char *value); + +int xas_vox_set_parameter_float(xas_vox *vox, + const char *name, + float value); + +int xas_vox_set_parameter_int(xas_vox *vox, + const char *name, + int value); + int xas_vox_stop(xas_vox *vox); int xas_vox_active(xas_vox *vox); |