summaryrefslogtreecommitdiffstats
path: root/include/xas
diff options
context:
space:
mode:
authorXANTRONIX Development2022-02-26 23:34:42 -0500
committerXANTRONIX Development2022-02-26 23:34:42 -0500
commit51806621006a9d54d368c7c033e59b2a3818f5ae (patch)
tree9e047779811e429248246fec20074d9317e633bb /include/xas
parent83dfce31edeed5e33b981c9aa78278ed7fa2a979 (diff)
downloadxas-51806621006a9d54d368c7c033e59b2a3818f5ae.tar.gz
xas-51806621006a9d54d368c7c033e59b2a3818f5ae.tar.bz2
xas-51806621006a9d54d368c7c033e59b2a3818f5ae.zip
Implement args_concat() in src/vox.c
Implement args_concat() in src/vox.c to prepare to allow passing arbitrary arguments to text2wave
Diffstat (limited to 'include/xas')
-rw-r--r--include/xas/vox.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/xas/vox.h b/include/xas/vox.h
index fd442a8..917eda1 100644
--- a/include/xas/vox.h
+++ b/include/xas/vox.h
@@ -11,13 +11,16 @@
#define XAS_VOX_ACTIVE (1 << 0)
typedef struct _xas_vox {
- const char *text2wave_path;
xas_audio_format format;
size_t buffer_size;
int flags;
+ const char *text2wave_path;
+ int argn;
+ char **args;
+
int pid,
stdin,