I am using the PlaySound function from the Win32 SDK to play a wave sound file. Currently, I have the following line of code:
PlaySound(szFile,NULL,SND_FILENAME );
But now I want to know, how I can detect the time when the wave file finished playing? I want to change a button's text when the wave stops playing.