diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/vox.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -267,6 +267,10 @@ int xas_vox_say(xas_vox *vox, const char *message) { return xas_vox_sayf(vox, "%s", message); } +int xas_vox_active(xas_vox *vox) { + return vox->flags & XAS_VOX_ACTIVE; +} + xas_audio_stream *xas_vox_stream_new(xas_vox *vox) { return xas_audio_stream_new_source((xas_audio_fill)vox_fill, (xas_audio_cleanup)vox_cleanup, |