summaryrefslogtreecommitdiffstats
path: root/include/xas
diff options
context:
space:
mode:
authorXANTRONIX Development2022-02-27 01:03:44 -0500
committerXANTRONIX Development2022-02-27 01:03:44 -0500
commit69d3def8de3cb36076aef6e0c6f9b471c545f6d6 (patch)
treeea378682c79e3aa383cbcb2393c457b46b09076c /include/xas
parent455efe0d2d06e37569631089843e38cadee5cc4a (diff)
downloadxas-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.h12
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);