From 69d3def8de3cb36076aef6e0c6f9b471c545f6d6 Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Sun, 27 Feb 2022 01:03:44 -0500 Subject: Implement methods for writing settings to tmpfile --- include/xas/vox.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'include') 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); -- cgit v1.2.3