diff options
author | XANTRONIX Development | 2022-02-01 22:12:56 -0500 |
---|---|---|
committer | XANTRONIX Development | 2022-02-01 22:13:35 -0500 |
commit | 325f2f18c93ede6f0de0efcc211fb856d0bfbcaa (patch) | |
tree | 3f3151cc552050fc73eb29a00a0acdf15ad4e42f /include | |
parent | e7746e3358b7dd8bb57e63aa67c020b598b723c6 (diff) | |
download | xas-325f2f18c93ede6f0de0efcc211fb856d0bfbcaa.tar.gz xas-325f2f18c93ede6f0de0efcc211fb856d0bfbcaa.tar.bz2 xas-325f2f18c93ede6f0de0efcc211fb856d0bfbcaa.zip |
Implement xas_vox_generate()
Implement xas_vox_generate() to finalise phrases sent to Festival
Diffstat (limited to 'include')
-rw-r--r-- | include/xas/vox.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/xas/vox.h b/include/xas/vox.h index 7eb72d1..3a940d5 100644 --- a/include/xas/vox.h +++ b/include/xas/vox.h @@ -38,6 +38,8 @@ void xas_vox_destroy(xas_vox *vox); int xas_vox_stop(xas_vox *vox); +int xas_vox_generate(xas_vox *vox); + int xas_vox_vsayf(xas_vox *vox, const char *message, va_list args); int xas_vox_sayf(xas_vox *vox, const char *message, ...); |