Hi Jeff,
In addition there is an error in the code in the gc_demo_open_vox_channel(int index) function:
if (port[index].direction == DIR_IN) {
sprintf(port[index].play_filename,"prompt.pcm",index);
}
Warning C4474 'sprintf' : too many arguments passed for format string gc_hmp_hold_retrieve 1918
The index variable is not printed to port[index].play_filename. There is a missing %d...
Can I simply remove the "index" from this line?
Thanks.
Mike