diff options
author | XANTRONIX Development | 2022-02-01 16:58:46 -0500 |
---|---|---|
committer | XANTRONIX Development | 2022-02-01 16:58:46 -0500 |
commit | 27960adc8926dbcc0399bf1b2f8408ebeaaa5700 (patch) | |
tree | b14673d9b12630e9888c70267dfd574f484b307b /include/xas | |
parent | a048f5848e6d57098d4524cb8b97853ef8329854 (diff) | |
download | xas-27960adc8926dbcc0399bf1b2f8408ebeaaa5700.tar.gz xas-27960adc8926dbcc0399bf1b2f8408ebeaaa5700.tar.bz2 xas-27960adc8926dbcc0399bf1b2f8408ebeaaa5700.zip |
Again, with the whole "this stuff compiles" thing
Diffstat (limited to 'include/xas')
-rw-r--r-- | include/xas/vox.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/xas/vox.h b/include/xas/vox.h index 179d5d1..790cbca 100644 --- a/include/xas/vox.h +++ b/include/xas/vox.h @@ -1,6 +1,7 @@ #ifndef _XAS_VOX_H #define _XAS_VOX_H +#include <stdio.h> #include <stdarg.h> #include <sys/types.h> @@ -21,7 +22,11 @@ typedef struct _xas_vox { int flags; int pid, + stdin, stdout; + + FILE *in; + xas_audio_stream *output; } xas_vox; xas_vox *xas_vox_new(const char *text2wave_path, |