summaryrefslogtreecommitdiffstats
path: root/include/xas
diff options
context:
space:
mode:
Diffstat (limited to 'include/xas')
-rw-r--r--include/xas/vox.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/xas/vox.h b/include/xas/vox.h
index 641fe3a..93777b0 100644
--- a/include/xas/vox.h
+++ b/include/xas/vox.h
@@ -7,15 +7,15 @@
#include <xas/audio.h>
+#define XAS_VOX_SETTINGS_PATHLEN 64
-typedef struct _xas_vox {
enum xas_vox_state {
XAS_VOX_IDLE,
XAS_VOX_ACTIVE
};
+typedef struct _xas_vox {
xas_audio_format format;
-
size_t buffer_size;
const char *text2wave_path;
@@ -28,6 +28,8 @@ enum xas_vox_state {
stdin,
stdout;
+ char tmpfile[XAS_VOX_SETTINGS_PATHLEN];
+
FILE *in;
} xas_vox;