Hi
Does anyone know how to playing a set of short WAV files without delay?
I was using the following, but there is a delay in-between.
PlaySound("a.wav",NULL,NULL);//PLAY WAV SOUND ONCE
PlaySound("b.wav",NULL,NULL);//PLAY WAV SOUND ONCE
or I need to concatnate a few sets of short WAV files into one descriptor so that I can play them smoothly without delay.
If so, how to?
Thanks in advance.
http://msdn.microsoft.com/en-us/library/dd743680
SND_ASYNC is what you want. ^^
no. when I use SND_ASYNC, the result is what you hear is just only b.wav
is there any method to get around?
or need to use other API instead?
Please help